Module:snon-translit

From Linguifex
Revision as of 18:36, 8 April 2026 by Melinoë (talk | contribs) (Created page with "local export = {} local tt = { ["s"]='ꞅ', ["r"]='ꞃ', }; function export.tr(text, lang, sc) text = mw.ustring.gsub(text, '.', tt) return text end return export")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:snon-translit/doc

local export = {}
 
local tt = {
	["s"]='ꞅ', ["r"]='ꞃ',
};

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

return export