yogthos / markdown-clj

Markdown parser in Clojure
Eclipse Public License 1.0
544 stars 121 forks source link

URL broken if the link contains parenthesis #135

Closed ricardojmendez closed 7 years ago

ricardojmendez commented 7 years ago

If you add a link with parenthesis, such as

[Deus Ex](https://en.wikipedia.org/wiki/Deus_Ex_(video_game)) 

the renderer will stop at the first parenthesis and the URL will be broken.

screen shot 2017-08-11 at 18 40 18
yogthos commented 7 years ago

Just have to escape it [Deus Ex](https://en.wikipedia.org/wiki/Deus_Ex_(video_game\))

ricardojmendez commented 7 years ago

Cool. Closing as user error then. :-)