Module:Template error

Revision as of 01:59, 9 June 2024 by Xtex (talk | contribs)

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

local p = {}
function p.templateErr( 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