markdown-js icon indicating copy to clipboard operation
markdown-js copied to clipboard

Gruber fail parsing inline links in specific block of text

Open radek opened this issue 11 years ago • 0 comments

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&quot; then (&quot;[link again](/url)">Link</a>

while should as:

<a href="/url">Link</a> &quot;then text&quot; then (&quot;<a href="/url">Link again</a>&quot;)

Work around would be to place optional (empty) title inside first link. I start debugging it but didn't get to a satisfactory fix.

radek avatar Oct 17 '14 22:10 radek