developit / snarkdown

:smirk_cat: A snarky 1kb Markdown parser written in JavaScript
http://jsfiddle.net/developit/828w6t1x/
MIT License
2.28k stars 110 forks source link

fix quote \n #81

Closed yisar closed 4 years ago

yisar commented 4 years ago

This pr fix a use case: input:

> one line
> two line

output:

<blockquote>
one line <br>
two line <br>
</blockquote>

It covers a lot more.