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

empty href with no quotes leads to exception #11

Open ijstokes opened 13 years ago

ijstokes commented 13 years ago

With bad html of the form {a href=}foo{/a} html2text will bomb out. An empty string will work fine (e.g. {a href=''}foo{/a}). I don't know how tolerant of bad HTML you want html2text to be.

Ian