Open theory opened 6 years ago
Note that even if I remove the space before the opening (
, Markdown.pl does the right thing:
<p>First we have <a href="/this">this link</a>(and also <a href="/that">that link</a>), get it?</p>
Your syntax is wrong. Try
First we have [this link][] (and also [that link][]), get it?
[this link]: /this
[that link]: /that
Sure, there's a workaround, but if the other parsers can figure it out, maybe blackfriday can, too.
Given this file:
Blackfriday outputs:
It looks like the parentheses confuse Blackfriday. For reference, here's how Markdown.pl outputs it:
This is the expected output.