davidmerfield / Blot

Turns a folder into a blog
https://blot.im
Creative Commons Zero v1.0 Universal
1.83k stars 88 forks source link

Adds option to preserve hard line breaks #712

Closed davidmerfield closed 11 months ago

davidmerfield commented 11 months ago

By default, markdown collapses the following into a single continuous line for historical reasons (text editor column widths):

Hello
world

If enabled, this plugin will instead produce:

<p>Hello<br>
world</p>