From 69057f0e323f05073eac5458b2afe622c55a96b8 Mon Sep 17 00:00:00 2001 From: Vlasta Vesely Date: Fri, 27 Apr 2018 13:21:36 +0200 Subject: [PATCH] iast: transliterate numbers --- iast.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/iast.c b/iast.c index de687fd..4c957b1 100644 --- a/iast.c +++ b/iast.c @@ -141,6 +141,18 @@ static const struct transliteration_letter table_letters[] = { {0x0903, "ḥ"}, /* ः (visarga) */ {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} };