Skip to content

Latest commit

 

History

History

rust

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

uklatn

Ukrainian Cyrillic transliteration to Latin script.

Supported transliteration schemes:

Usage

use { uklatn::Table, uklatn::decode, uklatn::encode };

encode("Доброго вечора!", Table::default());
decode("Paljanycja", Table::default());

Set the transliteration scheme:

encode("Борщ", Table::Dstu9112B);
encode("Шевченко", Table::Kmu55);

Notes

Input is assumed to be in Ukrainian (Cyrillic or Latin script), and will be processed in full. If your data has mixed languages, do preprocessing to extract Ukrainian chunks.