Just noticed that it looks correctly in the title because the regex didnβt match on two emojis next to each other, which is why the emojis in the title are currently not escaped and thus the unicode emojis are directly rendered.
Just opened a PR for this.
Regarding this error I was able to notice that in lib/emoji/db.json
there is
{
"code": "1f481",
"name": "tipping_hand_woman"
}
which should be
{
"code": "1f481-200d-2640-fe0f",
"name": "tipping_hand_woman"
}
@joffreyjaffeux is there an update needed for the db.json? If yes, I would love to take care of this