gitbucket / markedj

JVM port of graceful markdown processor marked.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support escaped round brackets in markdown links

dpolivaev opened this issue · comments

If round brackets are contained in the links, there are different ways of entering them in markdown. They are discussed at https://stackoverflow.com/questions/13824669/how-do-you-write-a-link-containing-a-closing-bracket-in-markdown-syntax.

[Syntax](http://en.wikipedia.org/wiki/Syntax_\(programming_languages\))
[Syntax](<https://en.wikipedia.org/wiki/Slowloris_(computer_security)>)
[Syntax](http://en.wikipedia.org/wiki/Syntax_%28programming_languages%29)

Currently markedj seems to support only the third way. It would be nice if also the other ways could be supported.

Related: freeplane/freeplane#1847