encoder: add conversion of uppercased letters
This commit is contained in:
parent
cc7d8439ee
commit
fa53226433
1 changed files with 17 additions and 0 deletions
17
encoder.c
17
encoder.c
|
@ -28,6 +28,23 @@ static const struct encoder_tuple table[] = {
|
||||||
{"s.", "ṣ"},
|
{"s.", "ṣ"},
|
||||||
{"m.", "ṃ"},
|
{"m.", "ṃ"},
|
||||||
{"h.", "ḥ"},
|
{"h.", "ḥ"},
|
||||||
|
|
||||||
|
{"A-", "Ā"},
|
||||||
|
{"I-", "Ī"},
|
||||||
|
{"U-", "Ū"},
|
||||||
|
{"R.", "Ṛ"},
|
||||||
|
{"R.-", "Ṝ"},
|
||||||
|
{"L.-", "Ḹ"},
|
||||||
|
{"N^.", "Ṅ"},
|
||||||
|
{"N~", "Ñ"},
|
||||||
|
{"S,", "Ś"},
|
||||||
|
{"T.", "Ṭ"},
|
||||||
|
{"D.", "Ḍ"},
|
||||||
|
{"N.", "Ṇ"},
|
||||||
|
{"S.", "Ṣ"},
|
||||||
|
{"M.", "Ṃ"},
|
||||||
|
{"H.", "Ḥ"},
|
||||||
|
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue