erusev / parsedown

Better Markdown Parser in PHP

Home Page:https://parsedown.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unicode markers

edwinallan opened this issue · comments

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

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