Convert unicode strings into its ASCII representation.
The purpose of this library is the same as python's unidecode library (version 1.1.1).
Code of the initial release of this library has been extracted from GeneWeb and adapted to be released in an independent library.
opam install unidecode
Released under the terms of the GNU GENERAL PUBLIC LICENSE.
- Only supports NFC normalization form.
- Transliteration targets french language
(i.e. russian
у
givesou
whileu
could be expected). This will eventually be parameterizable. - Transliteration might produce strange casing
(e.g.
У
produceOU
whileOu
could be expected). Choosing between default (current) behavior, lower casing, upper casing, and capitalization will eventually be an option.
dune build # build the library
dune install # install the built library
dune clean # clean compilation artifacts
dune runtest # run unit tests
dune build @runbench # compare with other libs