Somewhere in the Markdown parsing/HTML sanitizing pipeline, line breaks are getting removed.
"linetext\r\r\r\rsecondline"
becomes
<p>linetext</p>
<p>secondline</p>
This is probably working as intended for the library, but we need to eventually give the users the ability to put a linebreak between paragraphs i.e.
<p>linetext</p>
<br>
<p>secondline</p>
Somewhere in the Markdown parsing/HTML sanitizing pipeline, line breaks are getting removed.
becomes
This is probably working as intended for the library, but we need to eventually give the users the ability to put a linebreak between paragraphs i.e.