48,355
edits
No edit summary |
No edit summary |
||
| Line 181: | Line 181: | ||
if not match(word, "·") then | if not match(word, "·") then | ||
for cluster, _ in pairs(clusters) do | for cluster, _ in pairs(clusters) do | ||
word = gsub(word, "(" .. cluster .. vowels .. "+" .. consonants .. "?)", "·%1·") | word = gsub(word, "(" .. cluster .. vowels .. "+" .. consonants .. "?)", "·%1·") | ||
| Line 202: | Line 200: | ||
word = gsub(word, "(" .. consonants .. "+)·(" .. consonants .. "+)", function(c1,c2) return match(c1 .. c2, cluster) and "·" .. c1 .. c2 or c1 .. "·" .. c2 end) | word = gsub(word, "(" .. consonants .. "+)·(" .. consonants .. "+)", function(c1,c2) return match(c1 .. c2, cluster) and "·" .. c1 .. c2 or c1 .. "·" .. c2 end) | ||
end | end | ||
word = gsub(word, "%-", "·") | |||
end | end | ||