Skip to content

Commit

Permalink
Added old Cyrillic and Norway characters support (#10)
Browse files Browse the repository at this point in the history
* Added old Cyrillic and Norway characters support

* Fixed Ѣ
  • Loading branch information
Vladisvell authored and Dimach committed Aug 5, 2024
1 parent f9cbe2f commit 24e1148
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,28 @@ fn table_from_latin() -> CharsMapping {
("э", "e"),
("ю", "iu"),
("я", "ia"),
("е", "ѣ"),
("Е", "Ѣ"),
("И", "І"),
("и", "і"),
("а", "ä"),
("А", "Ä"),
("Йо", "ö"),
("йо", "Ö"),
("Оэ", "Ø"),
("оэ", "ø"),
("А", "Æ"),
("а", "æ"),
("О", "Å"),
("о", "å"),
("Аэ", "Ä"),
("аэ", "ä"),
("Оо", "Ꝏ"),
("оо", "ꝏ"),
("Ау", "Ꜽ"),
("ау", "ꜽ"),
("Ое", "Œ"),
("ое", "œ"),
("№", "#"),
]
.to_vec()
Expand Down

0 comments on commit 24e1148

Please sign in to comment.