45,647
edits
No edit summary |
No edit summary |
||
Line 41: | Line 41: | ||
end | end | ||
return | local a, p, antepenult, penult= weight[#weight-2], weight[#weight-1], syllables[#syllables-2], syllables[#syllables-1] | ||
if p == "l" and a == "l" then penult = "ˈ" .. penult | |||
elseif p == "h" then penult = "ˈ" .. penult | |||
elseif p == "l" and a == "h" then antepenult = "ˈ" .. antepenult | |||
elseif p == nil then syllables[#syllables] = "ˈ" .. syllables[#syllables] | |||
else penult = "ˈ" .. penult end | |||
return table.concat(syllables) | |||
end | end | ||