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

Bug when using inline link with a tittle

Open rizalp opened this issue 12 years ago • 0 comments

The first instance of inline link from the code bellow returned as expected, but the second one does not:

This is an [example inline link](http://lmgtfy.com/) and [another one with a title](http://lmgtfy.com/ "Hello, world").

Looking at chrome dev tools, here's the generated HTML:

<a href="http://lmgtfy.com/) and [another one with a title](http://lmgtfy.com/" title="Hello, world">example inline link</a>

But somehow, if used separately, the code above works

This is an [example inline link](http://lmgtfy.com/)

and

[another one with a title](http://lmgtfy.com/ "Hello, world").

I've tried it using the browser examples

rizalp avatar Oct 25 '13 08:10 rizalp