diff options
| author | Tomaz Solc <tomaz.solc@tablix.org> | 2020-12-06 18:45:30 +0100 |
|---|---|---|
| committer | Tomaz Solc <tomaz.solc@tablix.org> | 2020-12-06 18:45:30 +0100 |
| commit | 2a96ff7b53bdbe29a6dc739f1e3cec05a1f500c5 (patch) | |
| tree | 8e7879e7d120c63cf708646e53bdb78cd20561d4 /unidecode | |
| parent | 0d2e52870ec3cfa6eb29fdf9a7e73e1a5454c0bf (diff) | |
| download | unidecode-2a96ff7b53bdbe29a6dc739f1e3cec05a1f500c5.tar.gz | |
Fix U+204A "TIRONIAN SIGN ET"
See https://github.com/avian2/unidecode/issues/57
Diffstat (limited to 'unidecode')
| -rw-r--r-- | unidecode/x020.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/unidecode/x020.py b/unidecode/x020.py index 46425bf..e7e9e65 100644 --- a/unidecode/x020.py +++ b/unidecode/x020.py @@ -73,7 +73,11 @@ data = ( '??', # 0x47 '?!', # 0x48 '!?', # 0x49 -'7', # 0x4a + +# Tironian note standing for Latin "et". Still used as an ampersand +# in modern Irish. See https://github.com/avian2/unidecode/issues/57 +'&', # 0x4a + 'PP', # 0x4b '(]', # 0x4c '[)', # 0x4d |
