Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 04:59, 24 January 2019 by NekoPillow (talk | contribs) (Protected "Module:Chat" (‎[edit=sysop] (indefinite) ‎[move=sysop] (indefinite)))

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

getmetatable('').__index = function(str,i) return string.sub(str,i,i) end

local chat = {}

function chat.parse(frame)
    local str = frame.args[1]
    str:gsub("`[0-9wobpqertas!@#$^&`]",function(c)
        
        return c[1]
    end)
    
    return str
end

return chat