Example:
>>> import html2text
>>> h = html2text.HTML2Text()
>>> h.handle('a<blockquote>b<br>c</blockquote>')
u'a\n\n> b \nc\n\n'
>>> print h.handle('a<blockquote>b<br>c</blockquote>')
a
> b
c
The newlines are not preserved in the output. I would expect:
Just like in this HTML: