We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32f35f6 commit 5ce9bf6Copy full SHA for 5ce9bf6
app/utils/markdown.py
@@ -40,7 +40,7 @@ def convert_pre(self, el, text, convert_as_inline):
40
return ('\n' if not after_paragraph else '') + f"```{self.options['code_language']}\n{unescaped_text}\n```\n\n"
41
42
def convert_sub(self, el, text, convert_as_inline):
43
- return f'_{text}'
+ return f'_{text}' if text.strip() else text
44
45
def convert_sup(self, el, text, convert_as_inline):
46
return f'^{text}'
0 commit comments