markdown-js
markdown-js copied to clipboard
Gruber fail parsing inline links in specific block of text
Gruber fail parsing links in this block of text:
[Link](/url) "then text" then ("[link again](/url)")
renders as:
<a href="/url)" title="then text" then ("[link again](/url)">Link</a>
while should as:
<a href="/url">Link</a> "then text" then ("<a href="/url">Link again</a>")
Work around would be to place optional (empty) title inside first link. I start debugging it but didn't get to a satisfactory fix.