aaronsw / html2text

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

Don't append newlines inside a span #87

Open Moishe opened 10 years ago

Moishe commented 10 years ago

I'm working on an atom to jekyll converter, and found a bug where this construction (which is popular in Blogger):

Text

would cause output like this:

[Text

](http://example.com)

Which jekyll barfs on because it doesn't like newlines inside a link span. This fixes that problem.