45,647
edits
No edit summary |
No edit summary |
||
Line 27: | Line 27: | ||
local function write_stress(term) | local function write_stress(term) | ||
local pattern = consonants .. vowels .. "*" .. consonants .. "-" | local pattern = consonants .. "?".. vowels .. "*" .. consonants .. "-" | ||
local syll = {} | local syll = {} | ||
term = gsub(term, pattern, "%1·") | |||
term = gsub(term, "^·", "") | |||
term = gsub(term, "·(" .. consonants .. ")·", "%1·") | |||
term = gsub(term, "·(" .. consonants .. ")$", "%1") | |||
return | return term | ||
end | end | ||