-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
fix(text-to-unicode): handle non-BMP + more conversion options #1087
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Quality Gate passedIssues Measures |
Hi @lionel-rowe, great job, could be interesting to add a transcript including "character names" (ie, using https://www.npmjs.com/package/@unicode/unicode-15.1.0) ? |
I have a standalone tool I currently use that provides similar functionality. The JSON file mapping chars/ranges to their names is around 2MB, which doesn't seem like a reasonable amount to pull in unconditionally here. An async solution loading only the relevant Unicode blocks with dynamic Edit: Actually it looks like the RLE+gzip+base64-encoded version of the name data in the |
Hi @lionel-rowe, yes, right this is not bi-directional and yes the reverse will be a lookup |
Hi @lionel-rowe, implemented text-to-unicode-names in #1183 |
Quality Gate passedIssues Measures |
Fixes #1081
Fixes #1175