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.
tr(text, lang, sc)
text
written in the script specified by the code sc
, and language specified by the code lang
.nil
.local export = {}
local char = {
= "र", = "व"
}
function export.tr(text, lang, sc, override)
local UTF8_char = "*"
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
end)
return text
end
return export