erusev / parsedown-extra

Markdown Extra Extension for Parsedown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reference-style links are not working with extra-parameters

Jampire opened this issue · comments

Hi
input:

I get 10 times more traffic from [Google][1] than from
Yahoo or MSN.

[1]: http://google.com/ "Google" {target=_blank}

expected (Markdown Extra):

<p>I get 10 times more traffic from <a href="http://google.com/" title="Google" target="_blank">Google</a> than from Yahoo or MSN.</p>

got (Parsedown Extra):

<p>I get 10 times more traffic from [Google][1] than from Yahoo or MSN.</p>
<p>[1]: <a href="http://google.com/">http://google.com/</a> &quot;Google&quot; {target=_blank}</p>