erusev / parsedown-extra

Markdown Extra Extension for Parsedown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Text ignored if on same line as quote

merfed opened this issue · comments

This really pertains to parsing inline html. But, the issue still shows up in Parsedown Extra. It however parses as intended in Parsedown.

So say you supply this to parsedown-extra:
<blockquote><cite><a href="#">Test</a></cite><p>test</p></blockquote> test two

The result is
<blockquote><cite><a href="#">Test</a></cite><p>test</p></blockquote>

It's ignoring, and dropping any text that's on the same line as the blockquote after closing.

It seems to be related with issue #44

@AlfredoRamos that's correct, thanks for pointing it out