Module:Warning
From Halopedia, the Halo wiki
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Documentation for this module may be created at ModuleDoc:Warning
local utils = require( 'Module:Utils' )
local p = {}
-- Adapter for the Halopedia Lua utils.warning function, for use in templates
function p.warning( frame )
return utils.warning( frame.args[1], frame.args[2], frame.args[3], frame.args[4] )
end
return p