Add Iñupiatun Orthography

This commit is contained in:
Daniel Løvbrøtte Olsen
2019-03-01 02:45:09 +01:00
parent 7c7f7bff0f
commit 388871958d
4 changed files with 87 additions and 5 deletions

39
x2i/ik-keys.yaml Normal file
View File

@@ -0,0 +1,39 @@
---
- - l^%
- ł̣
- - l%^
- ł̣
- - L^%
- Ł̣
- - L%^
- Ł̣
- - g^
- ġ
- - G^
- Ġ
- - l^
-
- - l%
- ł
- - L^
-
- - L%
- Ł
- - '&^'
- ł̣
- - N%
- Ñ
- - N^
- Ŋ
- - n%
- ñ
- - n^
- ŋ
- - r^
- ȓ
- - R^
- Ȓ
- - '&'
- ł

View File

@@ -37,6 +37,10 @@ const regex = OuterXRegExp(
const defaultMatchAction = (left: string, match: string, right: string) => left + match + right;
const matchType: { [key: string]: IMatchInstructions } = {
ik: {
join: (_, match) => `- ${match}`,
keys: readKeys("./x2i/ik-keys.yaml"),
},
p: {
join: (_, match) => `*${match}`,
keys: readKeys("./x2i/apie-keys.yaml"),
@@ -48,7 +52,7 @@ const matchType: { [key: string]: IMatchInstructions } = {
keys: readKeys("./x2i/z2i-keys.yaml"),
},
i: {
join: (_, match) => `|${match}|`,
join: (_, match) => `- ${match}`,
keys: readKeys("./x2i/i-keys.yaml"),
},
};