kzykhys / Ciconia

A New Markdown parser for PHP5.4
http://ciconia.kzykhys.com/
MIT License
355 stars 31 forks source link

sometimes GFM mode didn't add <br> of lines ends with '&xx;' #22

Closed breezewish closed 10 years ago

breezewish commented 10 years ago

with GFM whitespace extension enabled:

&lt;
Hello

should be rendered as:

<p>&lt;<br>
Hello</p>

but currently the result is:

<p>&lt;
Hello</p>

anyway, thanks to your great project :)

Update:

I found that lines with Chinese characters meet mistakes too.

你好
世界

is rendered as:

<p>你好
世界</p>
kzykhys commented 10 years ago

@breeswish 多謝 for reporting!