erusev / parsedown-extra

Markdown Extra Extension for Parsedown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Special chars ignored in abbreviations

nwtn opened this issue · comments

Some characters get ignored in abbreviations.

Input:

*[µg]: micrograms
*[g]: grams

* µg
* g

Expected output (and output from PHP Markdown Extra):

<ul>
<li><abbr title="micrograms">µg</abbr></li>
<li><abbr title="grams">g</abbr></li>
</ul>

Actual output:

<ul>
<li>µ<abbr title="grams">g</abbr></li>
<li><abbr title="grams">g</abbr></li>
</ul>

screen shot 2015-03-26 at 1 04 01 pm