Module:Infobox/doc: Difference between revisions
no edit summary
(Common classes are listed (infobox-header, infobox-subheader, infobox-image)) |
No edit summary |
||
Line 27:
===Map your arguments to parsing functions===
{{Main|Module:Param Parse}}
Use the
<syntaxhighlight lang="lua">
local params = {
parse.name,
parse.image,
{name = 'examine', func = parse.has_content, smw_property = 'Examine'}, -- Custom param
parse.episode,
...
}
|