Module:ii-translit
Jump to navigation
Jump to search
- The following documentation is generated by Module:documentation/functions/translit. [edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
This module will transliterate Nuosu language text.
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:ii-translit/testcases.
Functions
tr(text, lang, sc)- Transliterates a given piece of
textwritten in the script specified by the codesc, and language specified by the codelang. - When the transliteration fails, returns
nil.
local export = {}
local gsub = mw.ustring.gsub
local convert = mw.loadData("Module:ii-translit/data")
function export.tr(text, lang, sc)
text = gsub(text:gsub("%^", ""), "[^%s*]", " %0")
text = gsub(text, " ([%Aꀕ])", "%1") -- Iteration mark appends "w" onto previous syllable.
return (gsub(text, "%S", convert))
end
return export