erusev / parsedown

Better Markdown Parser in PHP
https://parsedown.org
MIT License
14.69k stars 1.12k forks source link

Unicode markers #786

Open edwinallan opened 3 years ago

edwinallan commented 3 years ago

Hello,

There is an issue by which the marker used for Blocks and Inline doesn't work with unicode characters. For example, I want to add the character "✓" in my extended class but that doesn't work.

It's actually very simple, all that is needed is to replace the line in "linesElements": marker = $text[0]; with $marker = mb_substr($text, 0, 1);

And voila!

Could someone push this to the latest release? Thanks

BenjaminHoegh commented 3 years ago

Do you have a example you could share where this is happing?