russross / blackfriday

Blackfriday: a markdown processor for Go
Other
5.41k stars 596 forks source link

enclosed parentheses in markdown links not rendered properly in html #706

Open rheewalt opened 1 year ago

rheewalt commented 1 year ago

When given the following input:

[some link](www.foo.com?param=(null))

blackfriday converts that input into:

<p><a href="www.foo.com?param=(null">some link</a>)</p>

Visually this will look like some link) and the link url will be www.foo.com?param=(null

Expected behavior would be: some link