Module:Table row counter/doc: Difference between revisions
Appearance
m change source to syntaxhighlight |
Humanipedia (talk | contribs) m 1 revision imported |
(No difference)
|
Latest revision as of 01:51, 6 February 2025
This module implements the {{table row counter}} template.
Usage from wikitext[edit source]
This module can be used from wikitext in the same way as the {{table row counter}} template, by simply using {{#invoke:table row counterTemplate:Thin space|Template:Thin spacemain}}
in place of {{table row counter}}
.
Usage from Lua modules[edit source]
To use this module from other Lua modules, first load the module.
<syntaxhighlight lang="lua"> local mTRC = require('Module:Table row counter') </syntaxhighlight>
You can then count table rows by using the _main function.
<syntaxhighlight lang="lua"> mTRC._main(args) </syntaxhighlight>
args is a table containing the module arguments. See the template documentation for more information about the available arguments, and for general caveats about this module's use.