Closed bmc closed 14 years ago
Consider this Markdown text:
Here is a [link][] (cool!) [link]: http://localhost/
With that input, John Gruber's Perl markdown script produces:
<p>Here is a <a href="http://localhost/">link</a> (Cool!).</p>
Knockoff produces:
<p>Here is a [link]<a href="Cool!" ></a>. </p>
Remove the trailing parenthetical expression, and Knockoff produces a valid link:
Input
Here is a [link][]. [link]: http://localhost/
Output
<p>Here is a <a href="http://localhost/" >link</a>. </p>
Error discovered in: knockoff_2.8.0.RC2-0.7.1-11.jar
knockoff_2.8.0.RC2-0.7.1-11.jar
Should be fixed in 0.7.1-12. Thank you very much for the reproduction example.
Consider this Markdown text:
With that input, John Gruber's Perl markdown script produces:
Knockoff produces:
Remove the trailing parenthetical expression, and Knockoff produces a valid link:
Input
Output
Error discovered in:
knockoff_2.8.0.RC2-0.7.1-11.jar