Module:snon-translit: Difference between revisions

Melinoë (talk | contribs)
No edit summary
Melinoë (talk | contribs)
Blanked the page
Tag: Blanking
 
Line 1: Line 1:
local export = {}
local tt = {
["ꞃ"] = 'r',
["ꞅ"] = 's',
};


function export.tr(text, lang, sc)
text = mw.ustring.gsub(text, '.', tt)
return text
end
return export