Module:Table row counter/doc

MyWikiBiz, Author Your Legacy — Sunday June 02, 2024
< Module:Table row counter
Revision as of 07:32, 16 July 2021 by Zoran (talk | contribs) (Pywikibot 6.4.0)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This is the documentation page for Module:Table row counter

This module implements the {{table row counter}} template.

Usage from wikitext

This module can be used from wikitext in the same way as the {{table row counter}} template, by simply using Template:Braces in place of Template:Braces.

Usage from Lua modules

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.