Jump to content

Module:Table row counter/doc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
create
 
update
Line 16: Line 16:


<source lang="lua">
<source lang="lua">
mTRC.luaMain(tableNo, ignoreRows, titleObj)
mTRC.luaMain(args)
</source>
</source>


<var>tableNo</var> is the number of the table to be counted, <var>ignoreRows</var> is the number of rows to ignore, and <var>titleObj</var> is a title object to be used instead of the current title. See the [[Template:Table row counter|template documentation]] for more information about the <var>tableNo</var> and <var>ignoreRows</var> variables, and for general caveats about this module's use.
<var>args</var> is a table containing the module arguments. See the [[Template:Table row counter|template documentation]] for more information about the available arguments, and for general caveats about this module's use.


<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||

Revision as of 04:58, 22 June 2014

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

Usage from wikitext

This module cannot be used directly from wikitext. It can only be used through the {{table row counter}} template. Please see the template page for documentation.

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 luaMain function.

mTRC.luaMain(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.