Alir3z4 / html2text

Convert HTML to Markdown-formatted text.
alir3z4.github.io/html2text/
GNU General Public License v3.0
1.74k stars 266 forks source link

Fix \n inside text of a Markdown link #373

Closed mborsetti closed 2 years ago

mborsetti commented 2 years ago

Fix Markdown links being broken by HTML where the link text includes a <br> (as seen in the wild).

Example:

<a href="https://example.org/">This is a<br>test</a>`

is output as

[This is a
test](https://example.com)

Whis is not a Markdown link.

After this PR the output is:

[This is a test](https://example.com)

Whis is a valid Markdown link.