Nothing Special   »   [go: up one dir, main page]

Jump to content

Module:For nowiki/doc

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by BrandonXLF (talk | contribs) at 06:00, 1 September 2024 (Expand). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


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>}}
  • separator and wikitext function the same as described in Template:For nowiki/doc#Usage.
  • 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

Module:For nowiki/doc/example:

{{#invoke:For nowiki|template|<br>|{{{i}}} is {{{1}}}}}

Calling:

{{Module:For nowiki/doc/example|A|B|Foo|Orange}}

Produces:

Module:For nowiki/doc/example

See also