Jump to content

Module:Table row counter/doc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Jackmcbarn (talk | contribs)
explain how to use from wikitext
Jackmcbarn (talk | contribs)
Usage from Lua modules: reflect changes to module
Line 13: Line 13:
</source>
</source>


You can then count table rows by using the luaMain function.
You can then count table rows by using the _main function.


<source lang="lua">
<source lang="lua">
mTRC.luaMain(args)
mTRC._main(args)
</source>
</source>



Revision as of 15:13, 22 June 2014

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 {{#invoke:table row counter|main in place of {{table row counter.

Usage from Lua modules

To use this module from other Lua modules, first load the module.

local mTRC = require('Module:Table row counter')

You can then count table rows by using the _main function.

mTRC._main(args)

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.