aaronsw / html2text

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

Added additional HTML entities for ascii conversion. #89

Open heston opened 10 years ago

heston commented 10 years ago

I was running into a UnicodeEncodeError trying to save an ascii file created by html2text. Turns out there were a few valid HTML entities we were using that were not being converted properly. This small commit adds those missing entities.

Thanks for taking a look.