Crates.io | esperanto-text |
lib.rs | esperanto-text |
version | 1.0.0 |
source | src |
created_at | 2020-05-16 04:10:28.024349 |
updated_at | 2021-03-25 07:26:24.422151 |
description | Convert Esperanto text between UTF-8, x-system and h-system transliterations |
homepage | https://github.com/thombles/esperanto-text |
repository | https://github.com/thombles/esperanto-text |
max_upload_size | |
id | 242250 |
size | 17,772 |
Convert Esperanto text between UTF-8, x-system and h-system transliterations.
True Esperanto text has various diacritics that can be properly represented in UTF-8. Those who are limited to ASCII or are unable to type these characters often resort to the "h-system" or "x-system". In these, a suffix is added to those letters which should have a diacritic.
This crate provides functions for converting a string between a transliteration and UTF-8. For the x-system this can be done with complete accuracy as there is no ambiguity. For the h-system, a small vocabulary list is used to avoid changing the meaning of real words.
A binary called eotext
is included to use these functions from a CLI.
To use the published crate in your Rust program add the following to
Cargo.toml
:
esperanto-text = "1"
If you have cloned the repo and want to run the eotext
program you must have
a Rust toolchain installed. The recommended way to do is is via
Rustup. Run the following command:
cargo build --release --bin eotext
The built binary will be located at target/release/eotext
.
let input = "eĥoŝanĝo ĉiuĵaŭde";
assert_eq!(
esperanto_text::utf8_to_x_system(input),
"ehxosxangxo cxiujxauxde".to_owned(),
);
let input = "Chiuj estas senchavaj kaj taugaj ideoj.";
assert_eq!(
esperanto_text::h_system_to_utf8(input),
"Ĉiuj estas senchavaj kaj taŭgaj ideoj.".to_owned(),
);
Made available under the MIT licence. See LICENCE
for details.