mity / md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
MIT License
759 stars 140 forks source link

MD4C does not perform Unicode folding of link ref. defs. correctly #78

Closed mity closed 5 years ago

mity commented 5 years ago

Input:

[SS]: /url
[ẞ]

Expected output:

<p><a href="/url">ẞ</a></p>

Actual output:

<p>[SS]: /url
[ẞ]</p>