This commit is contained in:
Kovid Goyal
2025-02-17 22:54:55 +05:30
parent f76b8307a5
commit 03cc258c25
3 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -389,7 +389,7 @@ class FFMLProcessor:
if tree.node_kind() == NodeKinds.BLANK_LINE:
result += '\n\n'
elif tree.node_kind() == NodeKinds.BOLD_TEXT:
indent_text(("\\ " if result.endswith("?") else "") + f'**{tree.text()}**')
indent_text(('\\ ' if result.endswith('?') else '') + f'**{tree.text()}**')
elif tree.node_kind() == NodeKinds.CHARACTER:
result += tree.text()
elif tree.node_kind() == NodeKinds.CODE_BLOCK: