45,660
edits
No edit summary |
No edit summary |
||
Line 83: | Line 83: | ||
word = gsub(word, "▫", "") | word = gsub(word, "▫", "") | ||
local c3 = "" | |||
for regex, repl in pairs(triphthongs) do | for regex, repl in pairs(triphthongs) do | ||
c3 = gsub(word, regex, repl) | |||
if word ~= c3 then | if word ~= c3 then return c3 end | ||
end | end | ||
return word | return word |