diff --git a/Lib/glyphNameFormatter/rangeProcessors/hangul_compatibility_jamo.py b/Lib/glyphNameFormatter/rangeProcessors/hangul_compatibility_jamo.py index c5826ee..17717c0 100644 --- a/Lib/glyphNameFormatter/rangeProcessors/hangul_compatibility_jamo.py +++ b/Lib/glyphNameFormatter/rangeProcessors/hangul_compatibility_jamo.py @@ -6,6 +6,7 @@ def process(self): self.edit("-") self.lower() self.compress() + self.scriptTag = self.scriptTag + "Compa" self.scriptPrefix() if __name__ == "__main__": diff --git a/Lib/glyphNameFormatter/rangeProcessors/hangul_syllables.py b/Lib/glyphNameFormatter/rangeProcessors/hangul_syllables.py new file mode 100644 index 0000000..7a4e955 --- /dev/null +++ b/Lib/glyphNameFormatter/rangeProcessors/hangul_syllables.py @@ -0,0 +1,12 @@ + +def process(self): + self.setExperimental() + self.edit("HANGUL") + self.edit("SYLLABLE") + self.lower() + self.scriptPrefix() + + +if __name__ == "__main__": + from glyphNameFormatter.exporters import printRange + printRange("Hangul Syllables")