Skip to content

Commit

Permalink
add spellrelax for long/short vowel. Goal: -norm to accept only corre…
Browse files Browse the repository at this point in the history
…ct ā and a, -desc to accept missing length mark.
  • Loading branch information
Trondtr committed Nov 12, 2024
1 parent d793b77 commit 93cb5ac
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/fst/orthography/spellrelax.regex
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,17 @@ A a -> [Ā|A] ,
E e -> [Ē|E] ,
I i -> [Ī|I] ,
O o -> [Ō|O] ,
U u -> [Ū|U]
U u -> [Ū|U] ,

ā (->) a ,
ē (->) e ,
ī (->) i ,
ō (->) o ,
ū (->) u ,
Ā (->) A ,
Ē (->) E ,
Ī (->) I ,
Ō (->) O ,
Ū (->) U

;

0 comments on commit 93cb5ac

Please sign in to comment.