We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b9c7f8 commit 08f1afaCopy full SHA for 08f1afa
myst_parser/mdit_to_docutils/base.py
@@ -532,7 +532,7 @@ def render_paragraph(self, token: SyntaxTreeNode) -> None:
532
def render_inline(self, token: SyntaxTreeNode) -> None:
533
lineblock = False
534
for child in token.children or []:
535
- if child.type == 'hardbreak':
+ if child.type == "hardbreak":
536
lineblock = True
537
break
538
@@ -552,7 +552,7 @@ def render_inline(self, token: SyntaxTreeNode) -> None:
552
lineblock.append(current_line)
553
554
555
556
current_line = nodes.line()
557
self.add_line_and_source_path(current_line, token)
558
0 commit comments