Module:CodeCat/script

From Wikipedia

Documentation for this module may be created at Module:CodeCat/script/doc

local m = {}

m.Latn = {
    wrap =
        function(text, langcode)
            return "<span lang=" .. langcode .. ">" .. text .. "</span>"
        end
    }

return m