Module:User:Aryamanarora/linker

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is a private module sandbox of Aryamanarora, for their own experimentation. Items in this module may be added and removed at Aryamanarora's discretion; do not rely on this module's stability.


local export = {}

local tt = {
    [','] = '', ['.'] = '', ['?'] = '', ['।'] = '', ['!'] = '', [':'] = '', [';'] = '',
    ['['] = '', [']'] = '', ['('] = '', [')'] = '',
};

local space = { [' '] = "]] [[", };

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

return export