Crates.io Build status License

translitRS — Transliterator for Serbian Language

TranslitRS is a command-line utility for transliteration between Cyrillic and Latin scripts of the Serbian language. It can work on plain text files directly, or as a filter for Pandoc document processor (Markdown, HTML, LaTeX, Microsoft Word...).

Usage

Arguments

Character sets

Listed below are available character sets and their shorthand codes:

Pandoc filter mode

When running as a Pandoc filter, the arguments listed above can't be passed directly. Instead, use the following arguments variables:

Examples

```sh

Transliterate plaintext file from Latin (Unicode) to Cyrillic

translitrs -f lat8 -t cyr -i source.txt -o destination.txt

Transliterate Microsoft Word document from Cyrillic to Latin

CHARSFROM=c CHARSINTO=l pandoc essay.docx --filter translitrs -o essay.docx ```