aaronsw / html2text

Convert HTML to Markdown-formatted text.
http://www.aaronsw.com/2002/html2text/
GNU General Public License v3.0
2.61k stars 412 forks source link

Paragraphs in blockquotes split text #17

Open mkalina opened 13 years ago

mkalina commented 13 years ago

If you have this construction

<blockquote>
    <p>Paragraph 1</p>
    <p>Paragraph 2</p>
</blockquote>

html2text generates this output

> Paragraph 1

>

> Paragraph 2

This should not be, since the empty line between the paragraphs breaks the blockquote...