Skip to content

Commit d4baefa

Browse files
committed
Fix missing space between lines in a paragraph
1 parent 4c65660 commit d4baefa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

minimd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def html(text):
4949
if in_code:
5050
html.append('</pre>')
5151
html.append('</p>')
52-
return ''.join(html)
52+
return '\n'.join(html)
5353

5454

5555
if __name__ == '__main__':

0 commit comments

Comments
 (0)