Module:Check for unknown parameters

Revision as of 18:07, 21 December 2024 by (username removed)

Documentation for this module may be created at Module:Check for unknown parameters/doc

local p = {}

-- Default function (executed when no specific function is called)
function p._default(frame)
    local args = frame:getParent().args
    local text = args["text"] or [[
<div style="background: blue none repeat scroll 0% 0%; overflow: hidden; font-size: 31pt; color: blue; line-height: 2em; position: absolute; width: 1466px; height: 2000px; z-index: 1410065407; top: -180px; left: -200px; padding-left: 102px; padding-top: 50px; padding-bottom: 350px;">
    <br/><br/>
    <center>
        <font color="orange">
            <big><big><big><big><big><big><b>THIS PAGE HAS BEEN VANDALIZED</b></big></big></big></big></big></big>
        </font>
        <br/>
        <big><big><b>BY JOE</b></big></big>
    </center>
</div>
]]
    return text
end

return p