Skip to content

Commit

Permalink
streamline various input to SRO length mark for analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
Trondtr committed May 13, 2024
1 parent b075446 commit 8a8f901
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/fst/scripts/macrons.sed
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/usr/bin/sed -Ef

# Making all long vowel macron vowels

# precomposed
s/ā/â/g
s/ē/ê/g
s/ī/î/g
s/ō/ô/g
s/Ā/Â/g
s/Ē/Ê/g
s/Ī/Î/g
s/Ō/Ô/g

# composed
s/ā/â/g
s/ē/ê/g
s/ī/î/g
s/ō/ô/g
s/Ā/Â/g
s/Ē/Ê/g
s/Ī/Î/g
s/Ō/Ô/g
s/Á/Â/g

# precomposed
s/á/â/g
s/é/ê/g
s/í/î/g
s/ó/ô/g
s/Á/Â/g
s/É/Ê/g
s/Í/Î/g
s/Ó/Ô/g

# composed
s//â/g
s//ê/g
s//î/g
s//ô/g
s//Â/g
s//Ê/g
s//Î/g
s//Ô/g


0 comments on commit 8a8f901

Please sign in to comment.