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 05:17, 24 January 2019 by NekoPillow (talk | contribs)

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

local chat = {}

function chat.parse(frame)
    local input1 = frame.args[1]
    local output1 = (input1:gsub("`[0-9wobpqertas!@#$^&]",function(c)
        local code = c:sub(2,2)

        return "</span><span style='"..code.."'>"
    end))
    
    return "<span>"..output1.."</span>"
end

return chat