erusev / parsedown

Better Markdown Parser in PHP
https://parsedown.org
MIT License
14.69k stars 1.12k forks source link

Please add visible new line breaker #752

Open MerryPanda opened 4 years ago

MerryPanda commented 4 years ago

Hello, 2 spaces is to invisible, please add a visible line breaker, for example \ (back slash) at the end of a line

Thanks

taufik-nurrohman commented 4 years ago

For quick fix, you could pre-process the markdown syntax, to replace \<enter> sequence into double space:

echo $Parsedown->text(preg_replace('/\\([\n\r]+)/', '  $1', $content));