-
Notifications
You must be signed in to change notification settings - Fork 755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emoji support #90
Comments
This is maybe tough to support because more modern emoji are actually combinations of multiple emojis but with with zero-width joiners. // pseudo code
"👩🚀".split() // ["👩", "", "🚀"] If you have time to make a CodePen, I can poke at it some. |
Could we use some fancy regex patten to avoid splitting the emoji? I will try to get some time to do this. |
I have created a Pen that looks promising. Split
Match
|
hey textillate had the same issue and they had solved it before moving to .lettering this way: specifically here: any change this could be implemented in .lettering too so that textillate would support this again? it seems like a good thing to support |
Hello there,
I've noticed an issue with Emoji, some Emoji are two charecters or more, upon applying lettering the characters are split and the Emoji no longer displays, instead you get the default broken charecter.
If I get time I will create an example oon codePen, but I think you get the idea.
Thanks
Luke
The text was updated successfully, but these errors were encountered: