Module:Error/doc: Difference between revisions

From Our World of Text Wiki
Jump to navigation Jump to search
(Fixed example code.)
m (Change variable names in example code.)
Line 4: Line 4:
local mw_error = require('Module:Error').error
local mw_error = require('Module:Error').error
return mw_error("Message")
return mw_error("Message")
return mw_error(("TypeError: %s"):format(warning), tag)
return mw_error(("TypeError: %s"):format(error_message), tag)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 13:42, 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(error_message), tag)

See also