You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All default-ignorable characters should be rendered as completely invisible (and non advancing, i.e. “zero width”), if not explicitly supported in rendering.
However, this library incorrectly considers some of them, for example U+3164 HANGUL FILLER, to have non-zero width.
(There is one exception, where this library is correct in assigning a non-zero width to a Default_Ignorable_Code_Point: U+115F HANGUL CHOSEONG FILLER is meant to be combined with other Hangul jamo to form a width-2 syllable block, so it should be assigned width 2 even though it has no display on its own.)
The text was updated successfully, but these errors were encountered:
Thanks, I think this is the same as your other issue, that if I am able to distinguish Default_Ignorable_Code_Point values as zero width it should solve for U+3164 HANGUL FILLER, or I can add it manually.
I agree about some jamo are meant to be combined, and this library assumes as such, see test case:
From https://www.unicode.org/faq/unsup_char.html#3:
However, this library incorrectly considers some of them, for example U+3164 HANGUL FILLER, to have non-zero width.
(There is one exception, where this library is correct in assigning a non-zero width to a
Default_Ignorable_Code_Point
: U+115F HANGUL CHOSEONG FILLER is meant to be combined with other Hangul jamo to form a width-2 syllable block, so it should be assigned width 2 even though it has no display on its own.)The text was updated successfully, but these errors were encountered: