Skip to content

Commit b404bd4

Browse files
committed
fix: example titles
1 parent ce30017 commit b404bd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyconverter/xml2py/ast_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,7 @@ def to_rst(self, indent="", max_length=100):
10411041
if isinstance(item, Title):
10421042
title = item.to_rst(indent=indent, max_length=max_length)
10431043
if not "Command" in item.children_types:
1044-
rst_item = f"**{title}**"
1044+
rst_item = f"**{title}**\n"
10451045
else:
10461046
rst_item = f"{title}"
10471047
elif isinstance(item, Element):

0 commit comments

Comments
 (0)