From a0a3fab4c9578027ae9af4aa2eec0b3a363df20c Mon Sep 17 00:00:00 2001 From: Claudine Peyrat <88194877+claudinepeyrat06@users.noreply.github.com> Date: Wed, 25 Jun 2025 10:30:24 +0200 Subject: switch from NFKC to NFC normalization form in the lettering tool (#3828) * switch from NFKC to NFC * Additional normalization. --------- Co-authored-by: CapellanCitizen <> --- lib/lettering/glyph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/lettering/glyph.py') diff --git a/lib/lettering/glyph.py b/lib/lettering/glyph.py index fd1e1985..98f69ecb 100644 --- a/lib/lettering/glyph.py +++ b/lib/lettering/glyph.py @@ -39,7 +39,7 @@ class Glyph(object): self.name = group.label if len(self.name) > 11: - self.name = normalize('NFKC', self.name[11:]) + self.name = normalize('NFC', self.name[11:]) self._process_baseline(group.getroottree().getroot()) self.clips = self._process_clips(group) self.node = self._process_group(group) -- cgit v1.2.3