Module:Chat

From Growtopia
Revision as of 05:15, 24 January 2019 by >NekoPillow
Jump to navigationJump to search

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

local chat = {}

function chat.parse(frame)
    local input1 = frame.args[1]
    count = 0
    local output1 = (input1:gsub("`[0-9wobpqertas!@#$^&`]",function(c)
        local code = c:sub(2,2)
        
        if(code == "`") then
            count = count - 1
            return "</span>"
        end
        count = count + 1
        return "<span style='"..code.."'>"
    end))
    
    return output1:rep("</span>",count)
end

return chat