Jump to content

Module:LoadData/doc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
m Usage: Made BASEPAGENAME resolve correctly
Line 5: Line 5:


==Usage==
==Usage==
<syntaxhighlight lang="wikitext">{{#invoke:{{BASEPAGENAME}}|Module name|index1|2 lteq=index2 limit|...|}}</syntaxhighlight>
&#123;{#invoke:{{BASEPAGENAME}}|Module name|index1|2 lteq=index2 limit|...|}}


* Zeroth parameter is the name of the data module to read, without ''Module:'', e.g. <code>Example/data</code>
* Zeroth parameter is the name of the data module to read, without ''Module:'', e.g. <code>Example/data</code>

Revision as of 17:37, 25 June 2024


A more complex version of Module:Data with more options and the ability to select indexes with an inequality operator.

Usage

{{#invoke:LoadData|Module name|index1|2 lteq=index2 limit|...|}}
  • Zeroth parameter is the name of the data module to read, without Module:, e.g. Example/data
  • Next parameters, for an index N starting at one, are called |N= for the exact index you need, coerced to number if possible, |N lteq= to select the highest numerical index less than or equal to the argument, or |N gteq= for the opposite.
  • |template= is a printf-style string to interpolate the resulting value(s) into, e.g. <b>%s</b>.
  • |preprocess= is like |template= except that frame:preprocess is run on it; this makes e.g. template transclusions work.
  • |if nil= is the string to return if the result is nil. Default is nil, which comes out as the empty string.