We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b261044 commit 33b686fCopy full SHA for 33b686f
scriptshifter/hooks/arabic/arabic_romanizer.py
@@ -1,5 +1,6 @@
1
from os import path
2
from sys import path as syspath
3
+from unicodedata import normalize as precomp_normalize
4
5
from scriptshifter import APP_ROOT
6
from scriptshifter.exceptions import BREAK
@@ -28,4 +29,7 @@ def s2r_post_config(ctx):
28
29
loc_mappings,
30
loc_exceptional)
31
32
+ # TODO create separate hook.
33
+ ctx.dest = precomp_normalize("NFD", ctx.dest)
34
+
35
return BREAK
0 commit comments