Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 467 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 467 Bytes

manchu-converter

crates.io

This project is in work in progress.

A simple converter for Manchu script. It converts transliteration to Manchu script.

Example

use manchu_converter::ManchuConverter;

fn main() {
    let text = "wesimburengge";
    let r = text.convert_to_manchu().unwrap();
    assert_eq!(r, "ᠸᡝᠰᡳᠮᠪᡠᡵᡝᠩᡤᡝ")
}