erusev/parsedown

Newline issue

Closed this issue · 1 comments

I have a problem with single newline being ignored.

This:

a
b

...is rendered:

a b

Any solution to this without replacing with double line breaking?

This solved it:

$Parsedown->setBreaksEnabled(true);