Unicode emoji modifiers are handled differently in titles and post content πŸ‘¨β€πŸŒΎ πŸ’β€β™€οΈ

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 :slight_smile:

7 Likes