1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/// See
/// [https://en.wikipedia.org/wiki/Armenian_alphabet](https://en.wikipedia.org/wiki/Armenian_alphabet)
/// for details.
///
/// Based on the work by Artur Barseghyan.
pub use Armenian;
/// See
/// [http://en.wikipedia.org/wiki/Romanization_of_Bulgarian](http://en.wikipedia.org/wiki/Romanization_of_Bulgarian)
/// for details.
///
/// Based on the work of Petar Chakarov.
pub use Bulgarian;
/// See
/// [http://en.wikipedia.org/wiki/Greek_alphabet](http://en.wikipedia.org/wiki/Greek_alphabet)
/// and
/// [https://en.wikipedia.org/wiki/Romanization_of_Greek#Modern_Greek](https://en.wikipedia.org/wiki/Romanization_of_Greek#Modern_Greek)
/// for details.
///
/// Based on the work of Artur Barseghyan.
pub use Greek;
/// Though not exactly a language, it's a set of commonly found unicode
/// characters. See
/// [http://en.wikipedia.org/wiki/Latin-1_Supplement_%28Unicode_block%29](http://en.wikipedia.org/wiki/Latin-1_Supplement_%28Unicode_block%29)
/// for details.
///
/// Based on the work of Marco Pattaro.
pub use Latin1;
/// See
/// [http://en.wikipedia.org/wiki/Romanization_of_Macedonian](http://en.wikipedia.org/wiki/Romanization_of_Macedonian)
/// for details.
///
/// Based on the work of Igor Stamatovski.
pub use Makedonian;
/// See
/// [http://en.wikipedia.org/wiki/Russian_alphabet](http://en.wikipedia.org/wiki/Russian_alphabet)
/// for details.
///
/// Based on the work of Artur Barseghyan.
pub use Russian;
/// See
/// [https://en.wikipedia.org/wiki/Romanization_of_Serbian](https://en.wikipedia.org/wiki/Romanization_of_Serbian)
/// for details.
///
/// Based on the work of Saša Kelečević.
pub use Serbian;
/// See
/// [http://en.wikipedia.org/wiki/Ukrainian_alphabet](http://en.wikipedia.org/wiki/Ukrainian_alphabet)
/// for details.
///
/// Based on work by Timofey Pchelintsev.
pub use Ukranian;