erusev / parsedown-extra

Markdown Extra Extension for Parsedown
MIT License
820 stars 123 forks source link

Text ignored if on same line as quote #80

Open merfed opened 8 years ago

merfed commented 8 years ago

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.

AlfredoRamos commented 8 years ago

It seems to be related with issue #44

erusev commented 8 years ago

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