10,794
edits
TheNightAvl (talk | contribs) No edit summary |
TheNightAvl (talk | contribs) No edit summary |
||
Line 1,900: | Line 1,900: | ||
IPA = mw.ustring.gsub(IPA, "^".. V_long_regex, "") -- delete long vowel | IPA = mw.ustring.gsub(IPA, "^".. V_long_regex, "") -- delete long vowel | ||
IPA = mw.ustring.gsub(IPA, "^[" .. C_regex .. "]+", "") -- delete consonant cluster | IPA = mw.ustring.gsub(IPA, "^[" .. C_regex .. "]+", "") -- delete consonant cluster | ||
if mw.ustring.find(IPA, "^[uyiɔœɛɤa][" .. C_regex .. "]*$") or mw.ustring.find(IPA, "^" .. V_long_regex .. "[" .. C_regex .. "]*$") then | |||
return nil | |||
end | |||
local IPA_rhymes = {} | local IPA_rhymes = {} |