Module:Template error

From OSDev.wiki
Revision as of 01:58, 9 June 2024 by Xtex (talk | contribs) (Created page with "local p = {} function p.infobox( f ) local args = mw.getCurrentFrame():getParent().args local text = args[1] mw.addWarning(text) return '<span style=\'color=red\' class=\'templateerror\'>' .. text .. '</span>' end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

local p = {}
function p.infobox( f )
	local args = mw.getCurrentFrame():getParent().args
	local text = args[1]
	mw.addWarning(text)
	return '<span style=\'color=red\' class=\'templateerror\'>' .. text .. '</span>'
end
return p