Fix missing space between lines in a paragraph

This commit is contained in:
David Hoppenbrouwers
2022-10-10 15:08:59 +02:00
parent 4c65660b99
commit d4baefa573

View File

@@ -49,7 +49,7 @@ def html(text):
if in_code: if in_code:
html.append('</pre>') html.append('</pre>')
html.append('</p>') html.append('</p>')
return ''.join(html) return '\n'.join(html)
if __name__ == '__main__': if __name__ == '__main__':