Markdown syntax for a link is pretty simple. The following Markdown
[Example](http://example.com/)
produces:
But what if the link itself contains a closing bracket,
[Syntax](http://en.wikipedia.org/wiki/Syntax_(programming_languages))
some Markdown implementations produce the following broken link:
Putting the URL in quotes does not work.
You can try to escape the character:
[Syntax](http://en.wikipedia.org/wiki/Syntax_\(programming_languages\))