-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipa_chart.lua
More file actions
28 lines (24 loc) · 785 Bytes
/
ipa_chart.lua
File metadata and controls
28 lines (24 loc) · 785 Bytes
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
ipa = {
vowels={},
consonants={},
combining={},
}
vowel_pairs = {
{ "close, front, unrounded", utf.char(0x0069)},
{ "mid, central", utf.char(0x0259)},
{ "open, back, unrounded", utf.char(0x0251)},
{ "nearclose, back, rounded", utf.char(0x028A)},
{ "nearclose, front, unrounded", utf.char(0x026A)}
}
consonant_pairs = {
{ "voiced, velar, nasal", utf.char(0x014B)},
{ "voiced, fricative, palatoalveolar", utf.char(0x0292)},
{ "unvoiced, fricative, palatoalveolar", utf.char(0x0283)},
{ "unvoiced, velar, sibilant, fricative", "x"},
{ "voiced, velar, sibilant, fricative", utf.char(0x0263)},
{ "unvoiced, nonsibilant, fricative, dental", utf.char(0x03B8)},
{ "voiced, nonsibilant, fricative, dental", utf.char(0x00F0)}
}
combining = {
{ "tiemark", utf.char(0x0361)}
}