Skip to content

Commit

Permalink
using greek-beta for fraktur-sz
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraheim committed Dec 8, 2024
1 parent 384b3e7 commit 7e29700
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unicoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,8 @@ def fraktur(text: str) -> str: # gothic, blackletter
out.write(chr(norm_fraktur_A + (ch - norm_base_A)))
elif norm_base_a <= ch and ch <= norm_base_z:
out.write(chr(norm_fraktur_a + (ch - norm_base_a)))
elif norm_base_sz == ch :
out.write(chr(norm_greek_a + 1))
# elif norm_base_0 <= ch and ch <= norm_base_9:
# out.write(chr(bold_base_0+(ch-norm_base_0)))
else:
Expand Down

0 comments on commit 7e29700

Please sign in to comment.