Module:ábḫ-ipa

Revision as of 21:10, 21 February 2020 by Thisimpliesthis (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


local export = {}

function export.convert(frame)
	local word = type(frame) == "table" and frame.args[1] or frame
	
	word = mw.ustring.gsub(word, "([aeiou]+)", "|%1|")
	
	return word
end

return export