iast: transliterate numbers
This commit is contained in:
parent
e97ceb8c25
commit
69057f0e32
1 changed files with 12 additions and 0 deletions
12
iast.c
12
iast.c
|
@ -141,6 +141,18 @@ static const struct transliteration_letter table_letters[] = {
|
||||||
{0x0903, "ḥ"}, /* ः (visarga) */
|
{0x0903, "ḥ"}, /* ः (visarga) */
|
||||||
{0x093d, "'"}, /* ऽ (avagrada) */
|
{0x093d, "'"}, /* ऽ (avagrada) */
|
||||||
|
|
||||||
|
/* Numbers */
|
||||||
|
{0x0966, "0"},
|
||||||
|
{0x0967, "1"},
|
||||||
|
{0x0968, "2"},
|
||||||
|
{0x0969, "3"},
|
||||||
|
{0x096a, "4"},
|
||||||
|
{0x096b, "5"},
|
||||||
|
{0x096c, "6"},
|
||||||
|
{0x096d, "7"},
|
||||||
|
{0x096e, "8"},
|
||||||
|
{0x096f, "9"},
|
||||||
|
|
||||||
{0, NULL}
|
{0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue