Module:ábḫ-ipa: Difference between revisions

no edit summary
(Created page with "local export = {} function export.convert(frame) local word = type(frame) == "table" and frame.args[1] or frame word = mw.ustring.gsub(word, "([aeiou]+)", "|%1|") retu...")
 
No edit summary
Line 4: Line 4:
local word = type(frame) == "table" and frame.args[1] or frame
local word = type(frame) == "table" and frame.args[1] or frame
word = mw.ustring.gsub(word, "([aeiou]+)", "|%1|")
word = mw.text.split(word, "", true)
return word
result = {}
for i,val in ipairs(word) do
if val == "b" then
if not mw.ustring.match(word[i], "[m]") then
table.insert(result, "β")
end
else
table.insert(result, val)
end
end
return table.concat(result)
end
end


return export
return export