Module:Mni-translit explained

local export = local gsub = mw.ustring.gsublocal u = mw.ustring.char

local tt =

function export.tr(text, lang, sc)

if type(text)

'table' then -- called directly from a template text = text.args[1] end

text = gsub(text, '.', tt)

text = gsub(text, 'ᵃ([aeiouāīū])', '%1') text = gsub(text, 'ᵃ¤', ) text = gsub(text, 'ᵃ͟', '͟') text = gsub(text, 'ᵃ', 'a') text = gsub(text, '¤', ) return text

end

return export