glyphs/case mapping between caps and lowercases
See original GitHub issueFor example, a font I am trying to onboard has Ydieresis
, but not ydieresis
.
We need a case mapping check cause if someone capitalises ÿ… then there won’t be any Ÿ.
We could have the same with small caps too.
There will be few exception like Dz
, which doesn’t have a lowercase relative.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Spacing between upper and lowercase - Glyphs Forum
I have an uppercase P that looks fine next to other caps on the right side but there's a gap whenever a lowercase...
Read more >How to convert a value from lower case to upper case in a map
How to convert a value from lower case to upper case in a map. ... The uppercase data can then be mapped to...
Read more >Mapping to lower case - Type Classes
Converting the whole input to lower case obliterates all distinctions between upper and lower case letters, and so capitalization should no longer have...
Read more >Case Mappings | ICU Documentation
Case mapping is used to handle the mapping of upper-case, lower-case, and title case characters for a given language. Case is a normative...
Read more >Character Case Mapping (Guile Reference Manual) - GNU.org
The procedures below provide support for “character case mapping”, i.e., to convert characters or strings to their upper-case or lower-case equivalent.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
To what @chrissimpkins mentioned I would add another exception:
uni0237
(j dotless), doesn’t have a capital counter part either.It looks like maybe this Unicode chart is a start? https://www.unicode.org/charts/case/chart_NoCaseMapping.html
Defined as the following:
Also relevant from the Unicode case mapping docs:
It might be possible to pull these data out of the ICU lib using something like
Cased
orChanges_When_*
properties?