Module:ábḫ-ipa

Revision as of 21:26, 21 February 2020 by Thisimpliesthis (talk | contribs)


local export = {}

function export.convert(frame)
	local word = type(frame) == "table" and frame.args[1] or frame
	
	word = mw.text.split(word, "", true)
	
	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

return export