Zeroclanzhang(讨论 | 贡献)2023年8月4日 (五) 16:55的版本 (创建页面,内容为“-- Imported from: https://en.wikipedia.org/wiki/Module:Error -- This module implements {{error}}. local p = {} local function _error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :wikitext(tostring(args.messa…”)
This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing.
This module implements {{Error}}. It creates an html message with class "error". Please, see the documentation page there for usage instructions.
-- Imported from: https://en.wikipedia.org/wiki/Module:Error-- This module implements {{error}}.localp={}localfunction_error(args)localtag=mw.ustring.lower(tostring(args.tag))-- Work out what html tag we should use.ifnot(tag=='p'ortag=='span'ortag=='div')thentag='strong'end-- Generate the html.returntostring(mw.html.create(tag):addClass('error'):wikitext(tostring(args.messageorargs[1]orerror('no message specified',2))))endfunctionp.error(frame)localargsiftype(frame.args)=='table'then-- We're being called via #invoke. The args are passed through to the module-- from the template page, so use the args that were passed into the template.args=frame.argselse-- We're being called from another module or from the debug console, so assume-- the args are passed in directly.args=frameend-- if the message parameter is present but blank, change it to nil so that Lua will-- consider it false.ifargs.message==""thenargs.message=nilendreturn_error(args)endreturnp