-
Notifications
You must be signed in to change notification settings - Fork 257
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
Update Emojis to include Unicode 15.0+ #621
Comments
I've made a investigation for this issue and found it seems to be a bug from linebreak not only because the default I created a simple playground to demonstrate this more clearly:
I found that the default if (wordBreak === 'break-all') {
return { words: segment(content, 'grapheme'), requiredBreaks: [] }
}
if (wordBreak === 'keep-all') {
return { words: segment(content, 'word'), requiredBreaks: [] }
}
const breaker = new LineBreaker(content) Only when A probably workaround, hope this helps those experiencing similar issues:
But when |
Bug report
Description / Observed Behavior
What kind of issues did you encounter with Satori?
It doesn't render Unicode 15.0 emojis, such as 🪈
The text was updated successfully, but these errors were encountered: