mmark-md / mmark

Strict markdown processor for writers
Other
111 stars 20 forks source link

Paragraphs within blockquotes are not parsed #72

Closed srid closed 4 years ago

srid commented 4 years ago
> This is first paragraph

  This is second.

The above should normally be rendered as two paragraphs within a single blockquote, but mmark renders them joined together as one paragraph in the blockquote.

mrkkrp commented 4 years ago

Well, it doesn't:

$ mmark
> First paragraph.

  Second paragraph.
<Ctrl-D>
<blockquote>
<p>First paragraph.</p>
<p>Second paragraph.</p>
</blockquote>

$ mmark --version
mmark 0.0.5.0 UNKNOWN UNKNOWN
using mmark     (library) 0.0.7.2
using mmark-ext (library) 0.2.1.2

I'm pretty sure we have unit tests for this, it looks like a very fundamental feature and I used it many times in my posts.

srid commented 4 years ago

Oops, you're right. I didn't notice the buggy CSS in use.