Module:as-Beng-Deva-translit

This module will transliterate text in the Assamese script. The module should preferably not be called directly from templates or other modules. To use it from a template, use {{xlit}}. Within a module, use Module:languages#Language:transliterate.

For testcases, see Module:as-Beng-Deva-translit/testcases.

Functions

edit
tr(text, lang, sc)
Transliterates a given piece of text written in the script specified by the code sc, and language specified by the code lang.
When the transliteration fails, returns nil.

local export = {}

local char = {
	["ৰ"] = "र", ["ৱ"] = "व"
}


function export.tr(text, lang, sc, override)
	local UTF8_char = "[%z\1-\127\194-\244][\128-\191]*"
	local asBeng = require("Module:scripts").getByCode("as-Beng")
	text = mw.ustring.toNFD(text)

	text = string.gsub(text, UTF8_char, char)
	text = require("Module:Beng-Deva-translit").tr(text, lang, sc, true)

	text = mw.ustring.gsub(
		text,
		".",
		function(c)
			return conv[c]
		end)
	return text
end
 
return export