Acciones

Plantilla

Diferencia entre revisiones de «Fe/doc»

De La Venciclopedia

m (1 revisión importada)
m (Texto reemplazado: «[[Template» por «[[plantilla»)
 
(No se muestra una edición intermedia del mismo usuario)
Línea 1: Línea 1:
{{Lua|Module:Foreach}}
{{Lua|Module:Foreach}}
The purpose of this [[Template:Fe]] (foreach) is to repeatedly use a template for each argument in a pipe delimited list.
The purpose of this [[plantilla:Fe]] (foreach) is to repeatedly use a template for each argument in a pipe delimited list.


It is a version of [[Template:Foreach]] that uses [[Module:Foreach]]. It allows the delimiter to be one or more blank spaces, or have these at the start and/or end of it. It also has no limit on the number of list items it can handle.
It is a version of [[plantilla:Foreach]] that uses [[Module:Foreach]]. It allows the delimiter to be one or more blank spaces, or have these at the start and/or end of it. It also has no limit on the number of list items it can handle.


== Example ==
== Example ==
Línea 22: Línea 22:


== See also ==
== See also ==
* [[Template:Foreach]]
* [[plantilla:Foreach]]
* {{Q|Q10966397}}

Revisión actual - 19:35 21 ene 2024

The purpose of this plantilla:Fe (foreach) is to repeatedly use a template for each argument in a pipe delimited list.

It is a version of plantilla:Foreach that uses Module:Foreach. It allows the delimiter to be one or more blank spaces, or have these at the start and/or end of it. It also has no limit on the number of list items it can handle.

Example

Create comma delimited links to each hook in a list:

{{fe|hook|, |ParserBeforeStrip|ParserAfterStrip}}ParserBeforeStrip , ParserAfterStrip

Compare:

{{foreach|hook|ParserBeforeStrip|ParserAfterStrip|delim=,}}ParserBeforeStrip ,ParserAfterStrip

Usage

{{fe|templatename|delim|item1|item2...}}

  • templatename - the name of a template that takes at least one parameter. Only the first parameter will be used, so the remaining parameters must be optional.
  • delim - a delimiter that should be inserted between the results of applying the template templatename to the list items; the parameter is compulsory but it can be the empty string
  • item1 - the first item to pass to the template, resulting in {{templatename|item1}}
  • item2,... - (optional) the second and following items to pass to the template, resulting in {{templatename|item2}}, etc.

See also