This seems like a silly use case at first, but when creating a slug from a string containing emojis or pictograms, there is no representation of those characters. For example:
slug.Make("π")
slug.Make("βΊ")
slug.Make("πππππͺ π₯ππ©π₯")
all yield empty strings.
I'm not sure how such a character would best be represented in a slug, but simply removing them could be problematic in some cases. Is this intentional?
This seems like a silly use case at first, but when creating a slug from a string containing emojis or pictograms, there is no representation of those characters. For example:
all yield empty strings.
I'm not sure how such a character would best be represented in a slug, but simply removing them could be problematic in some cases. Is this intentional?