Module:rjs-translit

From Wiktionary, the free dictionary
Jump to navigation Jump to search
This module needs documentation.
Please document this module by describing its purpose and usage on the documentation page.

-- Transliteration for Rajbanshi

local export = {}

function export.tr(text, lang, sc)
    text = mw.ustring.gsub(text, 'म़', 'mh')
    text = mw.ustring.gsub(text, 'ऩ', 'nh')
    text = mw.ustring.gsub(text, 'ऱ', 'rh')

	return require("Module:sa-translit").tr(text, lang, sc)
end

return export