Skip to content

Commit

Permalink
Fix missing space between lines in a paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
Demindiro committed Oct 10, 2022
1 parent 4c65660 commit d4baefa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minimd.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def html(text):
if in_code:
html.append('</pre>')
html.append('</p>')
return ''.join(html)
return '\n'.join(html)


if __name__ == '__main__':
Expand Down

0 comments on commit d4baefa

Please sign in to comment.