Module:Error/doc: Difference between revisions
Jump to navigation
Jump to search
Dat Hack3r (talk | contribs) (Added example code.) |
Dat Hack3r (talk | contribs) (Fixed example code.) |
||
Line 2: | Line 2: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local | local mw_error = require('Module:Error').error | ||
return mw_error("Message") | |||
return mw_error(("TypeError: %s"):format(warning), tag) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 13:41, 2 December 2024
This module implements {{Error}}. It creates an html message with class "error". Please see the documentation page there for usage instructions.
local mw_error = require('Module:Error').error
return mw_error("Message")
return mw_error(("TypeError: %s"):format(warning), tag)