Add extra newline in property descriptions, otherwise they appear on the same line

master
Marc Gilleron 2021-01-24 14:45:43 +00:00
parent 5a5a508249
commit ac2fb5f150
1 changed files with 1 additions and 1 deletions

View File

@ -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)