Munurin millum rættingarnar hjá "Module:Userbox/doc"

Frá Wikipedia, hin frælsa alfrøðin
Content deleted Content added
Stovnaði síðu við "{{high-risk|nógvum}} This module does the processing for three userbox templates, {{tl|userbox}}, {{tl|userbox-2}} and {{tl|userbox-r}}. {| class="wikitable" |- ! Templ..."
 
Xqbot (kjak | íkøst)
s Bot: Erstatt forældet <source> -tag og parameteren "enclose" [https://lists.wikimedia.org/pipermail/wikitech-ambassadors/2020-April/002284.html]
 
Linja 30: Linja 30:
To generate a userbox directly from Lua, first load the module.
To generate a userbox directly from Lua, first load the module.


<source lang="lua">
<syntaxhighlight lang="lua">
local userbox = require('Module:Userbox')
local userbox = require('Module:Userbox')
</syntaxhighlight>
</source>


You can then run any of the three templates with the code:
You can then run any of the three templates with the code:


<source lang="lua">
<syntaxhighlight lang="lua">
userbox.main(functionName, args)
userbox.main(functionName, args)
</syntaxhighlight>
</source>


For {{tl|userbox}} use the function name "<code>_userbox</code>"; for {{tl|userbox-2}} use the function name "<code>_userbox-2</code>"; and for {{tl|userbox-r}} use the function name "<code>_userbox-r</code>". The <code>args</code> parameter is a table of arguments to pass to the different userbox functions. To see a list of valid arguments, please consult the individual template pages.
For {{tl|userbox}} use the function name "<code>_userbox</code>"; for {{tl|userbox-2}} use the function name "<code>_userbox-2</code>"; and for {{tl|userbox-r}} use the function name "<code>_userbox-r</code>". The <code>args</code> parameter is a table of arguments to pass to the different userbox functions. To see a list of valid arguments, please consult the individual template pages.

Seinasta endurskoðan sum var 22. apr 2020 kl. 16:39

This module does the processing for three userbox templates, {{userbox}}, {{userbox-2}} and {{userbox-r}}.

Template Description Examples
{{userbox}} Makes userboxes with an id on the left-hand side, or with no id.
idinfo
info
{{userbox-2}} Makes userboxes with an id on both the left- and right-hand sides.
id1infoid2
{{userbox-r}} Makes userboxes with an id on the right-hand side.
infoid

To use any of these templates from a wiki page, please see the individual template pages for documentation. To generate userboxes directly from Lua, read on.

Generating userboxes from Lua[rætta wikitekst]

To generate a userbox directly from Lua, first load the module.

local userbox = require('Module:Userbox')

You can then run any of the three templates with the code:

userbox.main(functionName, args)

For {{userbox}} use the function name "_userbox"; for {{userbox-2}} use the function name "_userbox-2"; and for {{userbox-r}} use the function name "_userbox-r". The args parameter is a table of arguments to pass to the different userbox functions. To see a list of valid arguments, please consult the individual template pages.