r2h2 fix m in valid position not account by r2h2
This commit is contained in:
8
R2H2.lua
8
R2H2.lua
@@ -35,9 +35,9 @@ vowel_table = {"a","e","i","o","u"}
|
||||
symbol_vowel = {"","","","",""}
|
||||
symbol_extending_vowel = {"","","","",""}
|
||||
-- consonants
|
||||
consonant_table = {"g","sh","r","ny","ch","n","y","f","t","k","w","l","p","b","d","h"}
|
||||
symbol_consonant = {"","","","","","","","","","","","","","","",""}
|
||||
symbol_extending_consonant = {"","","","","","","","","","","","","","","",""}
|
||||
consonant_table = {"g","sh","r","ny","ch","n","y","f","t","k","w","l","p","b","d","h","m"}
|
||||
symbol_consonant = {"","","","","","","","","","","","","","","","",""}
|
||||
symbol_extending_consonant = {"","","","","","","","","","","","","","","","",""}
|
||||
-- composites
|
||||
composing_consonant_table = {"g","sh","r","ny","ch","m","y","f","t","k","w","l","p","b","d","h"}
|
||||
symbol_composite = {
|
||||
@@ -98,8 +98,8 @@ function convertToHeonian(text)
|
||||
-- adjust i
|
||||
if string.sub(text,i,i) == " " then
|
||||
transcribed_text = transcribed_text .. " "
|
||||
new_syllable = true
|
||||
end
|
||||
new_syllable = true
|
||||
i = i + 1
|
||||
pos = i
|
||||
char_step = false
|
||||
|
||||
Reference in New Issue
Block a user