Toggle menu
14
236
69
27.4K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:For nowiki/doc: Difference between revisions

From Kenshi Wiki
Created page with "{documentation subpage}} {{Module rating|p}} This module implements a foreach loop that can be used from wikitext. It exports two functions: * <code>main</code> - Implements {{tl|For nowiki}}, which can be used with explicitly provided parameters. '''Should not be called diretly.''' * <code>template</code> - Designed to be used from within other templates. It takes explicit configuration parameters but it uses parameters passed to the parent frame (the template) for all..."
 
No edit summary
Line 1: Line 1:
{documentation subpage}}
{{documentation subpage}}
{{Module rating|p}}
 


This module implements a foreach loop that can be used from wikitext. It exports two functions:
This module implements a foreach loop that can be used from wikitext. It exports two functions:
Line 30: Line 30:
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!-- Categories below this line, please; interwikis at Wikidata -->
<!-- Categories below this line, please; interwikis at Wikidata -->
[[Category:Modules]]
[[Category:Template metamodules]]
[[Category:Template metamodules]]
}}</includeonly><noinclude>
}}</includeonly><noinclude>
[[Category:Module documentation pages]]
[[Category:Module documentation pages]]
</noinclude>
</noinclude>

Revision as of 00:15, 1 March 2025


This module implements a foreach loop that can be used from wikitext. It exports two functions:

  • main - Implements {{For nowiki}}, which can be used with explicitly provided parameters. Should not be called diretly.
  • template - Designed to be used from within other templates. It takes explicit configuration parameters but it uses parameters passed to the parent frame (the template) for all others. Should be called directly.

Usage

{{#invoke:For nowiki|template|separator|<nowiki>wikitext</nowiki>|offset=offset}}
  • separator and wikitext function the same as described in Template:For nowiki/doc.
  • offset is the offset of the first argument to process. Defaults to 0, which means the |1= parameter passed to the template is the first parameter processed.

Example

If you have a template _TEMPLATE_:

{{#invoke:For nowiki|template|
|<nowiki>* {{{i}}} is {{{1}}}. Next is {{#expr:{{{i}}} + 1}}.</nowiki>}}

Then calling:

{{_TEMPLATE_|A|B|Foo|Orange}}

Would produce:

  • 1 is A. Next is 2.
  • 2 is B. Next is 3.
  • 3 is Foo. Next is 4.
  • 4 is Orange. Next is 5.

See also