From ac2fb5f150c963f4dddef76bd16166803bacbfcc Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Sun, 24 Jan 2021 14:45:43 +0000 Subject: [PATCH] Add extra newline in property descriptions, otherwise they appear on the same line --- doc/tools/xml_to_markdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tools/xml_to_markdown.py b/doc/tools/xml_to_markdown.py index 21973930..9ec25d28 100644 --- a/doc/tools/xml_to_markdown.py +++ b/doc/tools/xml_to_markdown.py @@ -325,7 +325,7 @@ def process_xml(f_xml, f_out, module_class_names): + make_custom_internal_anchor(member.attrib['name']) + " **" + member.attrib['name'] + "**" if 'default' in member.attrib: out += " = " + member.attrib['default'] - out += "\n" + out += "\n\n" if member.text is not None: out += make_text(member.text, module_class_names)