Help:Template

From The Scuba Wiki

Jump to: navigation, search
MediaWiki Handbook: Contents, Readers, Editors, Moderators, System admins +/-
Shortcut:
WM:TEMP

The contents of one page can be placed onto another page via a process called transclusion (comparable to calling a subroutine facility). If a page is specially intended for this purpose it is called a template.

Expansion is at page view time unless substitution is applied, in which case the expanded wikitext is saved. The wikitext for the parameter name is expanded, further see the parameter section.

This page and its extension Help:Advanced templates provide a reference manual on templates in MediaWiki. See also User:Happy-melon/Templates. For an introduction, see A quick guide to templates and mw:Help:Templates. For syntax often used within templates, see Help:Parser function, Help:ParserFunctions and other "Advanced functioning" help pages listed below.

Note: The master version of this page is the page m:Help:Template on Meta-Wiki; template demos work there, but may not work if you are viewing a copy of this page on another project.

Contents

General

The contents (either fixed or depending on parameters and/or variables) of any page on wiki can be inserted (or "transcluded") into other pages. Pages that are to be transcluded are called "templates" and are usually in the Template namespace.

In a "what links here" list, a page transcluding the template is shown with the message "(transclusion)", which is found at message with id 'Istemplate' (talk), and the MediaWiki default is "inclusion". See, for example, this list [1] on Meta-wiki.

Use the wikitext {{pagename}} to insert Template:pagename on any page.

Example: abc{{tc}}def

(using Template:tc containing "in<noinclude>{{documentation}}</noinclude>")

is expanded to abcindef [2].

This reference in the wikitext causes insertion of the template content when the referring page is rendered. Various equivalent terms are:

  • inclusion / including the page - "inclusion" by itself may be ambiguous, since one can say that a section etc. is included in a page even if there is no transclusion; based on these terms are the tag names "noinclude" and "includeonly", see below
  • transclusion / transcluding the page - this is more specific than "inclusion"
  • page embedding / embedding the page

Terms too general to be used with "page", therefore only used with "template":

  • template call / calling the template - referring more to the template tag than to the result
  • template use / using the template

Depending on context, "including" can be used as opposed to substituting the template.

The pages in the namespaces other from "Template" namespace can also be used as templates, except pages in namespaces specified in $wgNonincludableNamespaces. To use a page in the main namespace as a template, add a colon before the page name.

In the case of a name conflict with a variable, e.g. Template:Ns:3 and Template:PAGENAME, ":Template:" can be used to indicate that the template is meant: while {{Ns:3}} and {{PAGENAME}} give User talk and Template, {{:Template:Ns:3}} and {{:Template:PAGENAME}} give demo and This is the content of Template:PAGENAME..

Using a page outside the template namespace as template can be useful for:

  • quoting interface messages in the MediaWiki namespace
  • templates for personal use in subpages of one's userpage, e.g. for experimenting
  • inclusion of pages in other pages in the same namespace, e.g. having an extra page associated with each page, such as a to-do list, with a simple name correspondence; it can be created and included with {{{{NAMESPACE}}:{{PAGENAME}}/todo}}

If the page to be transcluded does not exist, then a link to the edit page is produced (for conversion details see Template:Exists). Thus, one way of making a template is putting the tag first, and then following the link. An exception is that transclusion of a "non-existing" page in the MediaWiki namespace trancludes the default content of that page. In other words, apart from transcluding a page one can also transclude a system message in a specified language (by default the site language); the result is independent of the user-specified interface language.

One can call a template that calls another template. If a template calls itself directly or indirectly, inclusion works only on one level for each template. The second-level inclusion is replaced by a link (possibly a self-link), with HTML comment:

<!-- WARNING: template loop detected -->

However, with templates redirecting to the template that one would want to call recursively, one can achieve recursion without having to make copies of the whole template content, with the number of levels limited by the number of redirects. See also Repetition within a page and template:List of template calls ( talk edit history links ).

A variable in a template that depends on the page, e.g., {{PAGENAME}}, is expanded based on the referring page, not on the template.

A list of pages embedded in a page (as recorded in the templatelinks table), all with links, is given on the edit page. Notes:

  • on a section edit page:
    • first, the whole list is given, i.e. also the templates used in other sections;
    • after pressing preview, only those in the section, updated for the edits made, if any;
  • similarly, when editing an old version of a page:
    • first, the list is given for the current version;
    • after pressing preview, the templates that used to be included are shown, updated for the edits on the old version made in the current session, if any;
  • if the name of an embedded page is an expression, e.g. "{{abc{{CURRENTDAY}}}}", currently giving "Template:Abc28", or "{{{{#ifexist:Template:A|A|x1}}|Template does not exist}}", currently giving "Template does not exist", the current template name is shown.

(Supported in version 1.4 and higher.)

In a template name the character "#" and any characters after that are ignored: "{{tc#abc}}" gives "in". This is used in en:template:hif ( talk edit history links ).

A wikitext with consecutive double opening braces and consecutive double closing braces, e.g. "{{{{tc}}}}", is interpreted as containing a template parameter tag with triple braces "{ {{{tc}}} }", giving "{{{{tc}}}}". To avoid that, use a space in at least one of the two quadruples, e.g. "{{ {{tc}}}}", which is correctly interpreted as "{{ {{tc}} }}", giving "Template:In".

With Special:ExpandTemplates, one can view the expanded wikitext a template call produces, as intermediate step toward rendering. The same is also produced with a URL like http://thescubawiki.com/wiki/index.php?title=Help:Template&action=raw&templates=expand.

Talk pages

Even if a template is intended for use on talk pages, the template page should not be put in a talk namespace, because there would be no page for discussing it. If it is for general use it is often put as usual in the template namespace, see e.g. w:Wikipedia:Talk page templates and w:Wikipedia:Template messages/User talk namespace. An auxiliary template for personal use for a user talk page can best be put in a subpage of the user page, not one of the user talk page, for example "User:Abc/Talk intro" rather than "User talk:Abc/Intro"; this allows discussion of the template at "User talk:Abc/Talk intro".

Case sensitivity

As usual the template name is case sensitive except (on most projects) for the first letter, and a blank space is equivalent with an underscore (as opposed to parameter names, see below: they are case-sensitive, even with respect to the first letter, and spaces are distinguished from underscores).

Use of templates across projects

A template only works when referred to from a page in the same project. To use it in another project, one has to copy it to there. Bugzilla:1126 is a request to lift that restriction, i.e. allow interwiki use of templates.

The adjustments needed in the copy, to work on the other project, can be reduced by using {{SERVER}}, localurl, and generic namespace names, and writing links in a way that works on multiple projects, e.g. m:Help:Table. For copying multiple templates, export and import can be helpful. It is also convenient if the template names can be the same on the other project. Therefore, when choosing template names, check which names are in use on other projects to which people might want to copy the templates. Note that if a template is referred to by something like abc{{NAMESPACE}}, a project with different namespace names requires a different template name, or a redirect.

Transclusion across projects, hence changing contents from a central place, is only possible:

  • for content in the form of an image on Commons, to any page,
  • for editable content on an image page on Commons, including content transcluded from other pages on Commons, to the corresponding local image pages, if there is no local image with the same name

Templates on the central Wikia work in the separate Wikia projects, provided that the prefix "wikia:" is used, see shared templates on Wikia. <ref>Note that these external Wikia projects are NOT hosted and managed by the Wikimedia Foundation.</ref>

Sometimes multiple projects require pages which are partly the same and partly different. For example, on some projects "m:" is used as interwiki link to Meta, and on some projects "MetaWikipedia:". In this case a common wikitext can be used, calling project-specific templates. In the example the wikitext of the page could contain {{meta}}, and we would have on each wiki a Template:Meta containing the required prefix.

Parameters

Template parameters are called-by-value, and therefore input parameters only (see also the section "Template expansion" below).

In the template call, while the number of parameter definitions (here two) can vary, the syntax is either

  • {{templatename|parname1=parvalue1|parname2=parvalue2}} with tags {{{parname1|default}}}, {{{parname2|default}}}, etc. in the template, or
  • {{templatename|parvalue1|parvalue2}} with tags {{{1|default}}}, {{{2|default}}}, etc. in the template, or
  • a mix of the two.

Thus a template call has, after the template name, zero or more parameter definitions, separated by raw pipe characters, "|". (Here, raw means in the un-expanded wikitext and not inside double or triple braces or double brackets.) Furthermore, each parameter definition containing a raw equals sign is split around the first such equals sign into a parameter name and parameter value. In this stage the wikitexts for the parameter names are expanded, but not yet those for the parameter values.

For any remaining parameter definitions the implicit numbers of the parameters are 1, 2, 3, etc. (so if there are also named parameters the implicitly numbered parameters are numbered according to the position among themselves, not the position in the mixed list as a whole). If a parameter would be assigned a value more than once (more than once as named parameter, e.g. {{t1|a={{te}}|a={{tf}}}}, or once as implicitly numbered one and once or more as named one, e.g {{t1|a={{te}}|1={{tf}}}}), working from left to right through the mixed list, only the last assignment is retained. The result is an associative array of parameter names and corresponding wikitexts for the parameter values, i.e. a={{tf}} in both examples.

A formal parameter (the placeholder for the parameter value) is represented by a parameter tag with three pairs of braces, optionally with a pipe and a default. The parameter names in assignments matching a formal parameter are selected. Only the wikitexts for the parameter values of these are expanded, as well as the defaults of the undefined ones, if specified. The template call is replaced by the template content, where the parameter tags with matching names are replaced by their values or defaults. The result of this step can be viewed by applying subst.

While what was explained involved expansion of wikitext for the template name, all parameter names and selected parameters can involve recursion in expanding the template.

To illustrate the above, a page with {{t1|{{ta}}|{{tb}}|{{tc}}={{td}}|1={{te}}|2={{tf}}}}, with template:t1 ( talk edit history links ) only using parameter {{{1}}}, and giving start-start-pqr-end-end, transcludes templates tc and te only.

A parameter tag such as {{{3|stu}}} can both be referenced explicitly with e.g. 3=pqr, and be referenced implicitly by putting pqr in the third position among the unnamed parameter definitions. If the name is not a "small" positive integer it can only be referenced explicitly.

Comparison between named and implicitly numbered parameters:

  • To specify the value of a particular implicitly numbered parameter all previous ones have to be defined too (often the empty string is used as value if the assignment is only for this reason).
  • With implicit numbering the call is shorter (except if many extra parameters have to be defined because of what was just mentioned).
  • Named parameters can be specified in any order.
  • An implicitly numbered parameter can be assigned a value containing "=" only indirectly (see below).
  • Spaces and newlines are stripped from the start and end of parameter values of named parameters, but not of implicitly numbered parameters. Therefore the best name for a separator parameter (specifying how items of output are separated) is "1". This has e.g. been done in template:for ( talk edit history links ). See also Help:Newlines and spaces; also, compare conditional whitespace.

The default (optional, together with the pipe character in front) can be different for every occurrence, and applies if no value is specified when calling the template, not to be confused with the case that the empty value is specified.

To distinguish between a parameter being defined and non-empty on one hand, or undefined or empty on the other hand, use #if: with a blank default:

{{ #if: {{{param|}}} | param is defined and non-empty | param is undefined or empty}}.

To distinguish between defined (and possibly empty) and undefined, use:

{{ #ifeq: {{{param|+}}} | {{{param|-}}} | param is defined | param is undefined }}.

In the case of page substitution with an undefined parameter, not the default but the parameter itself with default is substituted into the wikitext. If this is not desired, see Help:Substitution#Parameter_default_considerations for an alternative (it also uses the #ifeq just mentioned).

Example: named parameter substitution

Let's create a template called Name-example (that is, the template will be Template:Name-example), with a parameter for the first name which we will call firstName, and a parameter for the last name which we will call lastName.

Type the following in the new Template:Name-example:

:I am a template example, my first name is '''{{{firstName}}}''' and my last name is '''{{{lastName}}}'''.
:
:You can reference my page at [[{{{lastName}}}, {{{firstName}}}]].

On a second page, type this: {{Name-example}}

The result is:

I am a template example, my first name is {{{firstName}}} and my last name is {{{lastName}}}.
You can reference my page at [[{{{lastName}}}, {{{firstName}}}]].

Because the template has no parameters.

But if we type this on the second page: {{Name-example | firstName=John | lastName=Smith}}

The result will look like this:

I am a template example, my first name is John and my last name is Smith.
You can reference my page at Smith, John.

To analyse the working, one can apply Special:ExpandTemplates to see the expanded wikitext as intermediate result:

:I am a template example, my first name is '''John''' and my last name is '''Smith'''.
:
:You can reference my page at [[Smith, John]].

When this wikitext is applied directly the resulting rendering is the same.

Example: numeric parameter substitution

An example of how the contents of a parameter function.

Let us first define a template with the name t0, which will

  • expect a single argument
  • give back the text of that argument, with no spaces before or after it, between "start-" and "-end":
start-{{{1}}}-end

the definition of course being on page Template:t0.

  1. Calling the template named t0 with a parameter value of "a", i.e.,
    {{t0|a}}
    gives
    "start-a-end"
  2. Calling the template named t0 with a parameter value of " " (a blank space), i.e.,
    {{t0| }}
    gives
    "start- -end" .
  3. Calling the template named t0 with a parameter value of "" (an empty string), i.e.,
    {{t0|}}
    gives
    "start--end".
  4. Calling the template named t0 and not passing any parameters, i.e.,
    {{t0}}
    gives
    "start-{{{1}}}-end".

If something like {{{1}}} or in fact any {{{name}}} is visible on an ordinary page it typically indicates that a mandatory parameter of a template used on this page isn't defined.

Declaring a default value

Main article: Help:Parameter default.

Let us define a template with the name t which contains a single numbered parameter 1 with a default of pqr. The only difference between the effects of t and t0 appears when they are called with no parameter (and no "|"):

start-{{{1|pqr}}}-end

the definition of course being on page Template:t.

  1. Calling the template named t with a parameter value of "a", i.e.,
    {{t|a}}
    gives
    "start-a-end".
  2. Calling the template named t with a parameter value of " ", i.e.,
    {{t| }}
    gives
    "start- -end".
  3. Calling the template named t with a parameter value of "", i.e.,
    {{t|}}
    gives
    "start--end".
  4. Calling the template named t with named parameter 1=, i.e.,
    {{t|1=no surprise}}
    gives
    "start-no surprise-end".
  5. Calling the template named t with 1= after an unnamed parameter, i.e.,
    {{t|no|1=surprise}}
    gives
    "start-surprise-end".
  6. Calling the template named t with 1= before an unnamed parameter, i.e.,
    {{t|1=no|surprise}}
    gives
    "start-surprise-end".
  7. Calling the template named t and no parameter at all, i.e.,
    {{t}}
    gives
    "start-pqr-end".
  8. Calling the template named t and no named or unnamed parameter 1, i.e.,
    {{t|2=two}}
    gives
    "start-pqr-end".

Restrictions on parameter values

An implicitly named parameter can be assigned a value containing an equals sign, but only indirectly. Methods (here with example using template:t1 ( talk edit history links )) include:

  • Write it as the default of an undefined parameter: {{t1|{{{| a=b }}}}} gives start- a=b -end.
  • Use template:= ( talk edit history links ), e.g. {{t1| a{{=}}b }} gives start- aTemplate:=b -end.
  • If it is just for display, the equals sign can be replaced by the HTML entity &#x3d;: {{t1| a&#x3d;b }} gives start- a=b -end.
  • In external links, it can be replaced by the URL encoded %3D.

The same example with "1= a=b " gives start-a=b-end.

Reasons for using an unnamed parameter include:

  • Spaces and newlines are stripped from the start and end of parameter values of named parameters (as demonstrated).
  • Not disturbing the numbering of following unnamed parameters (alternatively, the parameter definition can be prefixed with an extra "|", providing a dummy definition of an unnamed parameter, which is overwritten by the parameter definition concerned).

Any unmatched pairs of two consecutive braces or brackets must be placed in nowiki tags. Braces can be used for nested template parameters, nested templates or parser functions while brackets can be used for links. Unmatched pairs not placed in nowiki tags either prevent template expansion or are taken as closing braces for the template call.

For example, using Template:t1 containing "start-{{{1}}}-end<noinclude>

[[Category:Demo template]]</noinclude>":

  • {{t1|abc]]def[[ghi}} gives {{t1|abc]]def[[ghi}} (the template is not expanded; see also [3] where this example causes several sections not to be displayed).
  • {{t1|abc}}def}} gives start-abc-enddef}} (the first closing braces are taken as those for the template call).

Without restriction:

  • {{t1|abc]def[ghi}} gives start-abc]def[ghi-end.
  • [http://1 {{t1|abc]def}} gives start-abcdef-end.

A parameter value can be quite long, see Help:Long parameter demo.

A parameter value containing a pipe character

To define a parameter value containing a pipe character (|) which is not part of a template call, parser function call, piped link or image tag, use Template:! containing "|". Using Template:t0 containing "start-{{{1}}}-end", compare {{t0|a{{!}}b}} giving start-aTemplate:!b-end, {{t0|a&#124;b}} giving start-a|b-end and {{t0|a|b}} giving start-a-end. The difference between the first and the second is that in the first case the expanded wikitext is start-a|b-end, while in the second case it is start-a&#124;b-end. This is rendered the same in final output but makes a difference when used in table syntax: this requires the "real" pipe character.

Using Template:x2 containing "{{{1}}}{{{1}}}",

{{x2|{{{!}} 
{{!}} A 
{{!}} B
{{!}}- 
{{!}} C
{{!}} D
{{!}}}
}}

gives

{Template:! Template:! A Template:! B Template:!- Template:! C Template:! D Template:!} {Template:! Template:! A Template:! B Template:!- Template:! C Template:! D Template:!}


while

{{x2|{&#124; 
&#124; A 
&#124; B
&#124;- 
&#124; C
&#124; D
&#124;}

}}

gives

{| | A | B |- | C | D |} {| | A | B |- | C | D |}


and

{{x2|{| 
| A 
| B
|- 
| C
| D
|}
}}

gives

{{

Similar constructs can allow a parameter value to contain a double closing brace. Even a parameter name can contain "|" and "}}" in this way, but that seems of little use. However, a pagename cannot contain "|" or a brace.

Mix of named and unnamed parameters

In the case of a mix of named and unnamed parameters in a template tag, the unnamed parameters are numbered 1,2,3,.., so they are not numbered according to the position in the mixed list as a whole.

For example, {{t sup|3=1|2|1=3|4|5|6|7}} using Template:t sup containing "{{{1}}}-{{{2}}}-{{{3}}}<noinclude> [[Category:templates]]</noinclude>" gives 3-4-5.

When parameters do not expand

MediaWiki version: 1.6 (for parameters defaults)

Parameters do not get expanded when they are inside nowiki tags or XML-style extension tags. Thus, the following will not work within a template, because the parameter is not expanded:

 <myextension xparam={{{tparam}}}> ... </myextension>
 

More than three opening braces

In the case of more than three opening braces the last three are interpreted as parameter braces. If there is no matching triple of closing braces the last two opening braces are taken as braces for a template or parser function.

Thus {{{{a}}}} is parsed as { {{{a}}} }, e.g. {{{{t1|1}}}} gives "{1}", while {{ {{t1|1}}}} gives Template:Start-1-end and {{{{t1|1}} }} gives also Template:Start-1-end. Interestingly {{{{t1|1}} }} {{{5}}} gives Template:Start-1-end {{{5}}}.

Furthermore, {{{{{a}}}}} is parsed as {{ {{{a}}} }}, e.g. {{{{{abc|tc}}}}} gives "in".

Thus if an expression for a parameter name starts with a template or parser function a blank space is needed after the third brace, e.g. {{{ {{#if:x|tc|ab}}}}} gives the value of {{{ tc}}}, while {{{{{#if:x|tc|ab}}}}} gives "in" (using the default value tc of parameter #if:x, and ignoring "|ab").

With 6 braces, e.g. {{{{{{a|b}}}|c}}} gives c.

Monitoring parameter usage

To monitor the usage of a parameter of a template (in the case that many pages use the template), this template can call an auxiliary template of which the name depends on whether the parameter is defined. The possible auxiliary templates need not exist, if they are e.g. used as parameter value of template:void ( talk edit history links ), to avoid displaying anything (with the new preprocessor use w:template:voidd ( talk edit history links ) instead). Applying "What links here" to the possible auxiliary templates shows which pages use the template with the parameter, and which pages use the template without the parameter. This parameter usage monitor facility should preferably be built into the template when creating the template or introducing a new parameter. If it is done afterwards "What links here" may not show a page until it has been refreshed by an ordinary or dummy edit or purge.

Applications of monitoring parameter usage include:

  • check where the parameter has not yet been specified, in order to add it
  • check where a parameter is used that is renamed, in order to change the template calls
  • check whether a parameter is used before abolishing it
  • when a template has been changed with respect to processing a particular parameter, check the pages which use the parameter (or some of them) to see if things work as desired.

In a similar way an auxiliary template can be called for a "template / parameter / parameter value" combination or "template / parameter / parameter value range" combination. "What links here" then shows which pages use the template with this parameter value, or with the parameter in the given range.

See template:T optional parameter demo ( talk edit history links ).

Passing parameters to a subtemplate

The following section requires knowledge of Extension:ParserFunctions to fully grasp.<i>

Conventional coding practices tell one to start creating subroutines for the stuff that exists in more than one place. This should hold true for complicated template code as well. However, if one has template parameters to worry about, calling subtemplates can be cumbersome (if not completely impractical). In MediaWiki, there is no "magic" way to pass parameters, like {{Subtemplate|%PASSALL%}}. Instead, one must explicitly pass everything; i.e. {{Subtemplate|{{{1}}}|{{{2}}}|{{{3}}}}} or, with named parameters, {{Subtemplate|Arg1={{{Arg1}}}|Arg2={{{Arg2}}}|Arg3={{{Arg3}}}}}.

One would think that with the Extension:Loops (which creates parser functions for loops in the programming sense), one could write up a nice little loop to pass a bunch of arguments to a subtemplate. Take the following code, which, at first glance, should pass Arg1 to the subtemplate:

{{Subtemplate|{{#if:||Arg1={{{Arg1}}}}}}}

Unfortunately, this won't work; it instead passes "Arg1={{{Arg1}}}" as parameter 1. As previously stated in this article, with templates, parser functions, and magic words (i.e. anything that uses the {{...}} syntax), when specifying an argument, MediaWiki only recognizes equal signs or pipes if they are outside a nested template-like call in the argument. In other words, it doesn't process equal signs or pipes that are the result of a template-like call.

Workaround using Extension:VariablesExtension and Extension:Loops

(Note: Loops also requires Extension:ParserFunctions to function.)

Since variables from Extension:VariablesExtension are automatically passed to a subtemplate, we can just convert all of our template parameters to variables. For example, this will convert unnamed parameters:

{{#vardefine:i|1}}{{
	#while:
	|{{{{{#var:i}}|}}}
	|{{#vardefine:{{#var:i}}|{{{{{#var:i}}}}}}}{{#vardefine:i|{{#expr:{{#var:i}}+1}}}}
}}{{subtemplate}}

Now we would program our subtemplate to use {{#var:1}} as opposed to {{{1}}}. Here's another example, but with named parameters like "Arg1", "Arg2", and so forth:

{{#vardefine:i|1}}{{
	#while:
	|{{{Arg{{#var:i}}|}}}
	|{{#vardefine:Arg{{#var:i}}|{{{Arg{{#var:i}}}}}}}{{#vardefine:i|{{#expr:{{#var:i}}+1}}}}
}}{{subtemplate}}

Now one would use {{#var:Arg1}}, {{#var:Arg2}}, etc. The downside of this method is that you might have to completely redesign your subtemplate to function with variables as opposed to parameters.

Workaround using Extension:DynamicPageList

The third-party Extension:DynamicPageList allows for what is called a surrogate template. This is an even easier way of passing all parameters. For example, you would put this in your top template:

{{#dpl:|title={{PAGENAME}}|include={TemplateName}Sub }}

This would call Template:TemplateNameSub with all of the arguments that were originally included with the original template call. More information can be found at the DPL:Manual - DPL parameters: Controlling output volume.

Template tag lay-out

To have a desired template tag lay-out, especially in the case of many parameters, additional dummy parameters can be used with a newline, spaces, and/or comments. In the case of unnamed parameters, this means that some parameter numbers are not used in the template content, so that their values, present in the template tag, do not affect the rendering of the template. For example, using Template:t3d containing "{{{1}}} {{{2}}} {{{3}}}<br /> {{{5}}} {{{6}}} {{{7}}}<br /> {{{9}}} {{{10}}} {{{11}}}",

{{t3d |a|b|c| 1
      |d|e|f| 2
      |g|h|i| 3
}}

gives:

a b c
d e f
g h i

If parameters are named, dummy parameters can easily be inserted at any time. If they are unnamed, then, to avoid renumbering, one can insert named parameters: any text including an equals sign will do, if the text on the left is not one of the parameter numbers: this text is interpreted as the name of an unused parameter, hence ignored.

Example:

Using template:Chess position ( talk edit history links )

{{chess position|=

 8 |rd|nd|bd|qd|kd|bd|nd|rd|=
 7 |  |pd|pd|pd|pd|pd|pd|pd|=
 6 |pd|  |  |  |  |  |  |  |=
 5 |  |  |  |  |  |  |  |  |=
 4 |  |pl|  |  |  |  |pl|  |=
 3 |  |  |  |  |  |  |  |bl|=
 2 |pl|  |pl|pl|pl|pl|  |pl|=
 1 |rl|nl|bl|ql|kl|  |nl|rl|=
    a  b  c  d  e  f  g  h

|30}}

which gives

8 rd nd bd qd kd bd nd rd
7 File:Chess d40.png pd pd pd pd pd pd pd
6 pd File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png
5 File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png
4 File:Chess l40.png pl File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png pl File:Chess d40.png
3 File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png File:Chess l40.png File:Chess d40.png bl
2 pl File:Chess d40.png pl pl pl pl File:Chess l40.png pl
1 rl nl bl ql kl File:Chess l40.png nl rl
a b c d e f g h

In this example, the 1 to 8 row numbers and a to h column numbers (as well as their surrounding spaces and newlines) in the parameter list are hidden within a dummy parameter (with an empty name before the equal sign).

The template generates an HTML table where each cell contains an image whose name is dynamically generated from the 64 first automatically numbered parameters (there are intermediate parameters within the numbered list, but as these dummy parameters are named explicitly, they don't increment the parameter number used to generate default parameter names. So the parameter with autogenerated name "1" effectively contains the "rd" value).

The template is then called with a parameter list that contains:

  • 65 parameters automatically named from "1" to "65" (64 parameters for the cells content, and the 65th for the image width),
  • and a dummy named parameter (whose name is an empty string, and whose effective value results from the last assignment with the chessboard column names a to h and the surrounding spaces and newlines), which is not used in the internal template content.

Note also that all parameters are trimmed, so the parameter with autogenerated name "9" (at position a7 on the chessboard above) is assigned the empty string value.

Relative name for transcluded page

A page A can transclude a subpage A/B using {{/B}} or, with more control over the name of the page to be transcluded, this name can be constructed from {{PAGENAME}}.

This allows copies of the same wikitext in different pages to transclude different pages. Thus for example, the same wikitext, adapted from [4], containing a list of calls {{/lang|..}}, can be used in various ways on different pages, for example List of Wikipedias/lang/demo‎ and List of Wikipedias/local names‎, by varying the content of the subpage. A transcluded page need not use all the specified parameters. Two pages can share the same transcluded page using a redirect.

Template page

Without noinclude and includeonly parts the following are identical:

  • the rendering of the wikitext of the template (this is on the template page, and would be the same in other pages with that wikitext, except for page-dependent variables)
  • the rendering of the template on a page that calls it without parameters

Thus, the defaults are shown, e.g., Template:T 1 containing "abc{{{1|def}}}ghi{{{1|jkl}}}mno" shows the same as {{t 1}}: "abcdefghijklmno".

Template page if no defaults have been specified

In simple cases this corresponds to treating the parameter tags as ordinary text, for example:

"{{t2demo}}" (using Template:t2demo containing start-{{{1}}}-middle-{{{2}}}-end<noinclude>[[Category:Demo template]]</noinclude>) gives start-{{{1}}}-middle-{{{2}}}-end

Similarly, if part of the parameters is undefined, only those show up as {{{parameter number or name}}}.

However, often the rendered page produces a seemingly arbitrarily mutilated version of its content:

  • #expr and #ifexpr applied to an expression containing a parameter tag without default produces an error message. For example, a template that doubles parameter {{{1}}} with the wikitext {{#expr:2*{{{1}}}}} gives Expression error: Unrecognised punctuation character "{".

For parameters without default a workaround is less needed because the result in the case a parameter is undefined is of limited use anyway. If one wants it anyway one can put nowiki tags around the parameter; for the first example this gives "{{{1}}}p".

Less surprising, but nevertheless limiting the usefulness of the result are:

  • #if applied to a parameter tag without default produces the then-part, the else-part is not shown.
  • #ifeq typically produces the else-part only.
  • Variable tags are not shown, but evaluated.
  • A switch typically shows the default only.

In such cases includeonly can be used to avoid uninformative and messy rendering on the template page, but either way a disadvantage during template development is that preview does not (meaningfully) reflect changes in the parts of the page outside the noinclude tags (i.e. the included parts). Therefore it can be useful to provide representative default values, even if that is only done temporarily during development of the template.

With noinclude an informative template page can be produced, containing more demos and test cases than just the single default set. Typically, the noinclude-part of a template page contains examples including or substituting the template. Changes in the working of the template (i.e. changes outside the noinclude-part) are not yet effective in these examples in preview and, in the case of substitution, in "show changes". However, they are reflected in the rendered page after saving.

Some formatting aspects may show up which are not readily seen from the edit box.

A parameter value depending on parameters

As mentioned above, if a parameter is left undefined, the triple braced parameter name in the result does not function as a parameter if the page is called as a template from another page; if it should, do not omit the parameter value but specify it in terms of a parameter of the calling page; compare:

  • {{t2ademo|b}} (using Template:t2ademo containing {{t2demo|a}}) gives start-a-middle-{{{2}}}-end
  • {{t2a1|b}} (using Template:t2a1 containing {{t2demo|a|{{{1}}}}}) gives start-a-middle-b-end.
  • Similarly, {{t2a2|b}} (using Template:t2a2 containing {{t2demo|a|2={{{1}}}}}) gives start-a-middle-b-end. See also below.

The most straightforward way of expressing a parameter value in terms of a parameter is using the same name and making it equal, e.g. {{Lan is|lr=af|le={{{le}}}}} in Template:Lan is mr.

Empty vs. undefined

{{t2demo||a}} makes the first parameter equal to the empty string rather than leaving it undefined: it gives start--middle-a-end. By treating the second unnamed parameter as a parameter with the name "2", the first unnamed parameter can be left undefined.

Example: {{t2demo|2=a}} gives start-{{{1}}}-middle-a-end.

If the parameter is used in a tag like <font size> the default text may give invalid code that is conveniently ignored, rather than resulting in perhaps ugly code being rendered (but this may depend on the browser). See e.g. Template talk:Fontsize.

Parameter names (as opposed to template names) are case-sensitive, even with respect to the first letter, and spaces are distinguished from underscores. The empty string is also a valid parameter name, see Template:T empty string as parameter name.

Parameter 02 is distinguished from parameter 2: using Template:t pl0 containing "{{{1}}}{{{2}}}{{{02}}}", {{t pl0|5|6|7}} gives 56{{{02}}}

Note that parameters in the system messages (MediaWiki namespace]] are written differently: as $1, $2, etc.

msgnw

The prefix msgnw (short for "message, nowiki") is used to display within a page, more or less, the wikitext of another page. Differences are:

  • numbered and unnumbered lists are rendered as such instead of displaying # or * signs
  • (with the new preprocessor) comments are removed
  • a single newline is displayed as a blank space (this is especially disturbing the format of the wikitext of tables, and occurs even though newlines are significant in wikitable syntax)

To avoid most of this processing and to format the text appropriately, use the following to surround the transclusion in pre tags:

<{{p1|pre>}}{{msgnw:PageToTransclude}}{{p1|</pre}}>

Note, however, that comments will still be removed.

This function has been used for displaying the wikitext of a template which is active on inclusion. However, with the introduction of noinclude tags, msgnw displays a mix of that with wikitext for rendering the template page itself, with these and includeonly tags.

For example, for template:msgnw demo ( talk edit history links ):

"{{msgnw:Msgnw demo}}" gives " <includeonly>*abc '''def''' ''ghi'' &le;

  • [[jkl]] {{t1demo|p}} [[{{tc}}]]
  1. a
  2. b

jkl mno </includeonly><noinclude>[[Category:Demo template]]</noinclude>" [5]

Usage

A template is useful for any text for which one wants a copy in two or more pages, and there is no need for each copy to be edited independently to adapt it to the page it is in. Since parameters can be used, versions may to that extent even be different, and parameter values can be edited independently for each. Templates are not only convenient, but they can also "force" a useful uniformity. See also advantages of subprograms.

A template can also provide structure (e.g. a table structure, colors, and other formatting) while the content varies (fully or partly) through parameters and variables.

A template can also carry out computations, comparisons, etc. using ParserFunctions, where the result(s) vary again through parameters and variables. See e.g. Category:Mathematical templates.

Typical applications are:

Various combinations are possible. E.g., the last two could be combined, so that e.g. every language version of Wikipedia has the same Infobox Countries template (for each project a copy, because the template mechanism can not import across projects), which has parameters for the data, and refers to templates with translations of standard terms.

See also Help:Advanced templates.

Composite pages

The wikitext of a page may (partly or fully) consist of tags for the inclusion of component pages. The "templates" are not necessarily in the template namespace, and may be more or less self-contained pages by themselves. A disadvantage of putting the components in the template namespace is that the component page may, by itself, be of a nature that it belongs in e.g. the main namespace, while the prefix would suggest otherwise; also the prefix would clutter the pagename.

Examples are:

This allows the user the choice between viewing the component pages separately or combinedly. One may want to view a page separately if one has a slow connection; also sometimes people have sentimental reasons for having a separate page about a topic, e.g. a village. Viewing the combined page is much more convenient if there are many small component pages; even if a subbtopic page does not provide additional info, if it exists anyway, and is linked to, it is useful to display the content (making clear that the whole content is shown), it saves the trouble of checking the contents by following the link.

In the latter case the search function of the browser can be used for searching in the combined page. Similar to the section editing feature, it allows editing a component page; however, there is no possibility to have the combined wikitext in the edit box.

Edit history, recent changes, watching pages, and "what links here" work separately for the component pages and the composition page, not for the composite page. Related changes works for the component pages and for the composite page. Page protection can be set for selected component pages and for the composition page, not directly for the composite page.

The talk page of a composition page is used to talk about the composition and the page in general, and could in addition be a composite page of the talk pages of the component pages.

A composite page has an integrated TOC and section numbering; the numbering is not reset for each component page.

Editing a section of a component page can be done directly from the composite page, see editing sections of included templates. After saving, one ends up at the page for the component page to which the section belongs.

On projects with the interlanguage link feature the composite page shows the combined interlanguage links of all component pages, hence possibly multiple links for one language or even for one page.

For easy access to the component pages, links to them on the composite page (for example by self-links on the component pages) are convenient. Alternatively, access is through section editing, or, if the component pages are in the template namespace, through the list of templates called from the composite page, at its edit page.

Conversely, for easy access from a component page to the composite page(s) that call(s) it (if there are not too many of them) it is convenient to link the component page to them (on a composite page one becomes a self-link).

See also w:Wikipedia talk:Template namespace#transcluding prose.

Pages with a common section

A section on the relationship of the subjects A and B, or a subtopic equally relevant for A as for B, can be put both in page A and in page B, by making it a separate page C, called as a template from A and B.

Remarks:

  • For readers reading both A and B, it is useful that the duplication be indicated by a message or a special lay-out; otherwise it is confusing and inconvenient. One can for example use template:common section ( talk edit history links ):
    (This section appears in several articles.)
  • After saving one ends up viewing the template page. For easy access to the calling pages it is convenient to link the called page to them (on a calling page one becomes a self-link). This may well be integrated in the message about the duplication. It is even more convenient than the two-step link as shown above.
  • The section level of the embedded section(s) has to be the same in each embedding page. The same applies to lay-out and style.
  • Pages like C can be put in
    • the same namespace as A and B; advantage:
      • the kind of content of C is the same as that of A and B
    • the template namespace; advantages:
      • C appears in the list of templates called from A and B, at their edit pages
      • C by itself may not satisfy the standards for pages in the namespace of A and B, such as providing context (however, the message about the duplication explains it)

Examples:

For various remarks which also apply here, see also the previous section.

Repetition within a page

For a succession of similar pieces of content, as in a list, a computer program would use a loop. What comes closest in MediaWiki is putting the loop body in a template, and calling the template repeatedly, usually with a varying parameter value. This is somewhat primitive for a loop:

  • instead of "for i=1 to 5" we need to enumerate the values 1, 2, 3, 4, 5; on the other hand, this gives the versatility to use just as easily less regular values such as de, en, fr (collection-controlled loop).
  • repetition of code is minimized by the template, but the template call itself has to be repeated each time (but see also the next section)

Example:

  • Template:List of Languages - the "loop body" is in Template:Lang def; compared with putting the content of the latter directly in the list the advantage is that the variable part (the value of "code") occurs once each time in the code, although it is used twice. This is important because the fixed part of the list item code can be copied while the variable part is typically inserted manually.

The list of template calls can be in another template, with the name of the called template equal to or depending on a parameter, see e.g. template:Do for every Dutch municipality ( talk edit history links ).

For repetition of the same text the loop body can be a parameter, e.g. Template:X5 (see list).

A double loop is achieved by a second template that repeatedly calls the first. Similarly for a triple loop, etc. See e.g. w:Template:Ld, w:Template:L2d, and w:Template:L3d.

An example where the same template is used for different loop levels is Template:Loop 2. Because the software has a built-in protection against infinite nesting (if there is, there will be an error e.g. Fatal error: Maximum execution time of 30 seconds exceeded in /w/includes/Parser.php on line 775), a redirect is used for each level. The number of levels that the template can handle is determined by the number of parameters specified in the two template calls it comprises (because going up a level requires an extra parameter) and the number of existing redirects.

Similarly Template:Lanlp 1 is used for both the inner and the outer of a double loop. Adding an item (here a language) adds to each row and also adds an extra row.

Providing effective repetition without repetition of similar template calls in the wikitext

A technique for repetition of similar template calls without actually putting this list in the wikitext is demonstrated in template:for ( talk edit history links ), and a more primitive method described below.

Example (using Template:t2demo containing "start-{{{1}}}-middle-{{{2}}}-end<noinclude>[[Category:Demo template]]</noinclude>") (see the master text at m:Help:Template#Repetition_within_a_page, on Wikipedia template "for" is different):

{{for|; |call=t2demo|pc1n=2|pc1v=constant|abc|def|ghi}} gives:

Template:1x; Template:1x; Template:1x

Description of the old template:List of template calls ( talk edit history links ):

For an arbitrary template with up to three nameless parameters, it is equivalent to calling the template repeatedly, with the first parameter varying, and the possible other parameters fixed: one specifies the name, the values of the fixed parameters, and the list of values the first parameter should have in consecutive template calls, with a sequential number each, and ending with "end". The technique requires redirects like Template:List of template calls 3, as many as the maximum number of repetitions.

If e.g. the second parameter varies, or two parameters, then a similar template can be made, but each version requires its own set of redirects.

Example (using Template:t2demo containing "start-{{{1}}}-middle-{{{2}}}-end<noinclude>[[Category:Demo template]]</noinclude>"):

{{List of template calls|t2demo|constant||abc|1|def|2|ghi|end|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||}}

gives:

start-abc-middle-constant-endTemplate loop detected: Template:List of template calls 1

The empty parameters are needed in accordance with the maximum number of parameters the repeated template can have (currently three) and the maximum number of repetitions. Putting more empty parameters than needed at the end does not matter, but the number of empty parameters in the beginning of the list should be correct.

See also Help:Recursive conversion of wikitext.

Ambiguity of a reference to "this page"

If a page is included in another page, a reference to "this page" on the included page is ambiguous. Use noinclude or includeonly tags depending on what is meant. Alternatively, mention the page name explicitly, without using {{PAGENAME}}.

Internal links

In the case of an internal link in a template with the target depending on a parameter, and in the case of a link with the target depending on a template, existence detection works as usual.

Examples:

Templates and external links

Examples:

However, a URL can not be composed of:

  • a first part in a parameter and a second part added by the template (although we have seen above that reversed it works: a second part in a parameter and a first part prefixed by the template)
  • a first part in a template and a second part after the template (although we have seen above that reversed it works: the second part in a template and the first part before the template)

Example of first restriction:

Examples of second restriction:

Noinclude, includeonly, and onlyinclude

This feature is not available before version 1.6. These features are applied as nesting pairs, or 'Blocks', as it is said they enclose the material so that they can be said to begin and end a block of wikitext (code).

noinclude blocks

Anything between <noinclude> and </noinclude> will be processed and displayed only when the page is being viewed directly; it will not be included or substituted. Possible applications are:

  1. Categorising templates, see template documentation.
  2. Interlanguage links to similar templates in other languages.
  3. Pages in the MediaWiki namespace.
includeonly blocks

The converse is <includeonly>. Text between <includeonly> and </includeonly> will be processed and displayed only when the page is being included. Applications include:

  1. Adding all pages containing a given template to a category, but not the template itself.
  2. Avoiding messy rendering on the template page, e.g. "{{#expr:{{{1}}}}}" gives "Expression error: Unrecognised punctuation character "{"" [8].

Note that spaces and newlines between the general content and the tagged part belong to the general content. If they are not desired the include tag should directly follow the content on the same line:

<noinclude>this is </noinclude>fine<includeonly>, closing tags are
</includeonly><noinclude>
less critical, but must be specified.</noinclude>
nesting

Nesting an includeonly block within a noinclude block (or vice-versa) is legal but pointless.

onlyinclude blocks

With <onlyinclude>wikitext</onlyinclude> on a page, the display of the wikitext so surrounded and the rest of the page (except includeonly parts) is rendered on the page itself normally (note: this means interwiki translation links will behave as normal external links, unless they are further bracketed by <includeonly>). The demo page below holds a full screenful of text and code, including several includeonly blocks as well as a single onlyinclude block as a demonstration. It is advisable to look at that page in edit mode.

However, in transclusion, the page gives only the parts within onlyinclude blocks. Using the test line:

Using [[Help:Template/onlyinclude demo]], 
     <nowiki>{{Help:Template/onlyinclude demo}}</nowiki> 
          gives '''{{Help:Template/onlyinclude demo}}'''. 

When repeated below we get: Using Help:Template/onlyinclude demo, {{Help:Template/onlyinclude demo}} gives def. When that page is included, it does not even transclude other blocks which are defined as includeonly parts, unless such are also within the onlyinclude block. So on a page with onlyinclude tags, text within includeonly tags is never rendered, i.e., it is reduced to wikitext comment. See also Help:Template/onlyinclude demo 2 and its talk page.

Caveats on splitting and interworkings

Attempts to nest split pairs of these tags, or the similar <nowiki> and </nowiki> pair, won't work as expected.

If say <nowiki> begins within the general page content, or in a "noinclude" part, or in an "includeonly" part, then it also has to be closed within the same part.

The code ~<includeonly>~</includeonly>~~ will be displayed as ~~~ when the template is not included, ~~~~ when the template is included, but it will only be expanded as the active user when the template is subst'd, which is to say when it has been joined within the same block once again.

Wiki markup at the beginning of a template

If the first included character of a template is one of the Wiki markup characters :;*#, then it's interpreted as being at the beginning of the line (even when the template call is not).

To avoid this effect use <nowiki>#</nowiki> or a numeric character reference (NCR) or HTML entity like say &#58; for a colon. This NCR is also useful in conjunction with definition lists.

Substitution

Main article: Help:Substitution

Putting "subst:" after the double opening braces causes an automatic conversion of wikitext when the referring page is saved: the subst tag is replaced by the wikitext of the template, with the parameter values substituted for the parameters.

For optional multi-level substitution of templates add a substitution parameter with the empty string as default, e.g. {{{substp|}}}, after the opening braces in all calls of templates, parser functions and variables in templates, and add parameter definitions of the form "substq={{{substr|}}}" in all template calls within templates. Note that the use of multiple substitution parameters allows selective substitution. Maximum flexibility is obtained by making them all different. Sometimes a little less flexibility is needed; e.g. there may be a group of parser functions in a template for which it is sufficient to be able to choose between substitution of all or none in the group.

To reduce, in the wikitext, undefined parameters with default to the defaults themselves, use the alternative way of specifying a parameter default.

Redirection

When a page called for inclusion is a redirect page, the redirect target is included instead. As usual, a double redirect or broken redirect does not work.

A page that consists of nothing else than the inclusion of another page as a template, shows similarities to a redirect to that other page, but also many differences, including:

  • the result has as header the name of the referring page
  • there is no redirect message
  • the buttons such as edit (for editing the whole page), watch, talk, history, "what links here", and "last modified", etc., refer to the referring page (to go to the target page, a section edit link can be used, from there the whole page can be accessed)
  • the referring page is in the same categories as the target page, except when includeonly and/or noinclude tags are used
  • "double redirects", with one or both being this kind of "pseudo-redirect", work.

Compare Help:Template namespace with Help:Template namespace - demo of alternative for redirect.

In a page that in turn includes such a referring page there is no difference.


Note that embedding works for all pages where redirecting works, and it also fails for all pages where a redirect won't work.

Self-transclusion

A page can transclude itself, but is protected against an infinite loop: the transclusion in the transcluded copy of the template is replaced by the bolded pagename. See Help:Self-transclusion demohttp://thescubawiki.com/Help:Self-transclusion_demo (talk, backlinks, edit) and Help:Self-transclusion demo 2http://thescubawiki.com/Help:Self-transclusion_demo_2 (talk, backlinks, edit).

Transcluding on page A page B redirecting to page A allows more repetition, see Help:Self-transclusion demo with redirecthttp://thescubawiki.com/Help:Self-transclusion_demo_with_redirect (talk, backlinks, edit) with Help:Self-transclusion demo redirecthttp://thescubawiki.com/Help:Self-transclusion_demo_redirect (talk, backlinks, edit).

If due to the use of braces hidden in a template (see Help:Recursive conversion of wikitext) the saved wikitext of a page contains a substitution call to itself, then on the next save the substitution is applied for one level; the transclusion in the transcluded copy of the template is replaced by a link to the pagename. Thus it becomes a self link, i.e., it becomes bolded text with immediately following characters also bolded. This time the link is followed in the wikitext by the hidden message "<!-- WARNING: template loop detected -->"; see [9]; this edit was automatic by edit/save without making a change in the wikitext oneself.

Parsing braces

If some braces are "hidden" in a template, as in template:lb ( talk edit history links ), then parsing of pairs of double and triple braces is based on visible braces only. In the case of partial substitution, first parsing is done for the purpose of substitution, then parsing is done again for rendering:

  • {{t1|{{lb}}tc}}}} gives start-{{tc-end}} - the last-but-one pair of closing braces is taken as closing braces of template:t1 ( talk edit history links )
  • {{t1|{{subst:lb}}tc}}}} gives the wikitext {{t1|{{tc}}}} rendered as start-in-end - after substitution the last pair of closing braces is taken as closing braces of t1
  • {{subst:t1|{{subst:lb}}tc}}}} gives the wikitext start{{tcend}} rendered as startTemplate:Tcend - the last-but-one pair of closing braces is taken as closing braces of t1 for both substitutions
  • {{subst:subst}}t1|a}}, substituting template:subst ( talk edit history links ), gives the wikitext {{subst:t1|a}} rendered the same; in the next edit the wikitext is converted to "startaend".
  • {{subst:tsubst 1|a}}, substituting template:tsubst 1 ( talk edit history links ): ditto.

With parser function #if instead of template:t1:

  • {{#if:x|{{lb}}t1|a}}|b}} gives {{t1|b}} - the last-but-one pair of closing braces is taken as closing braces of #if.
  • {{#if:x|{{subst:lb}}t1|a}}|b}} gives the wikitext {{#if:x|{{t1|a}}|b}} rendered as start-a-end - after substitution the last pair of closing braces is taken as closing braces of #if.
  • {{subst:#if:x|{{subst:lb}}t1|a}}|b}} gives the wikitext {{t1|b}} rendered as start-b-end - the last-but-one pair of closing braces is taken as closing braces of #if for both substitutions.
  • {{subst:#if:x|{{subst:subst}}t1|a}}|b}} gives the wikitext "{{subst:t1|b}}" rendered the same: "{{subst:t1|b}}" (the substitution phase is finished; the ordinary template expansion phase ignores substitution calls); in the next edit the wikitext is converted to "startbend".
  • {{subst:#if:x|{{subst:#if:x|{{subst:subst}}t1|a}}|b}}|c}} gives the wikitext "{{subst:t1|c}}" rendered the same: "{{subst:t1|c}}".
  • {{subst:#if:x|{{subst:tsubst 1|a}}|b}} gives the wikitext "startaend". Apparently there is a substitution phase of parameter expansion resulting in the parameter value "{{subst:t1|a}}", and another substitution phase for the substitution of #if, taking the parameter value not as plain text, but interpreting the "subst:" in it again.

See also Help:Recursive conversion of wikitext.

Comparison of linking and embedding

Linking and embedding have in common:

  • if the page does not exist, a link to the edit page is shown; the links are identical if it is not a piped link; the link does not show parameters and does not show whether, after creation, the new page will be linked or embedded.
  • the name can depend on variables and parameters

Predefined templates

Variables and parser functions can be considered predefined templates. They do not have a page that defines in terms of wikitext what they do, because their action is something extra that cannot be constructed from more basic wikitext functionality.

Some additional differences:

  • Parser functions use ":" instead of the first "|".
  • An edit page does not list predefined templates used on the page.
  • No "What links here" is available for predefined templates, to find the pages where they are used.
  • Apart from #switch, predefined templates don't allow you to define named parameters, and therefore equal signs generally have no special effect, comparison:
    {{ #if: not blank | 2=abc }} gives 2=abc
    {{ ifdef | not blank | 2=abc }} gives abc

Ordinary and predefined templates have in common that their parameter values can depend on ordinary and predefined templates. In the case of named parameters, the names used in the template call can also depend on ordinary and predefined templates. This applies also for the named parameters of #switch.

Template expansion

Expansion of wikitext can be relevant even if the wikitext resulting from these subevaluations cannot have effect on the overall wikitext, because the expansion can have side effects:

  • Subevaluations producing links add on the target page to the list of incoming links (What links here), based on the pagelinks table, even if there is no link on the resulting page.
  • Subevaluations involving template calls add on the template page in "What links here" and on the edit page of the page concerned to inclusion items, based on the templatelinks table.
  • Some extensions may perform some action during a subevaluation, e.g. with VariablesExtension a subevaluation may involve assignment of a value to a variable.

In the case of #ifexpr etc., either the then-part or the else-part is expanded, not both. Also the wikitext for the value of an unused template parameter is not expanded.

See also ParserFunctions#Code_execution.

Templates as table pieces

Tables using wikitable syntax can have pieces in templates. Tables using HTML syntax can not, by default. Thus, if you have a table row like

 |1||2
 |-

in a template called "Row1" and a table row like

 <tr><td>1</td><td>2</td></tr>

in a template called "Row2", and you have tables like

 
  {| border="1"
  |a||b
  |-
  {{Row1}}
  |c||d
  |}
  

and

 
  <table border="1">
  <tr><td>a</td><td>b</td></tr>
  {{Row2}}
  <tr><td>c</td><td>d</td></tr>
  </table>
  

You will obtain:

ab
12
cd

and

<tr><td>1</td><td>2</td></tr>
ab
cd

But if you set the variable $wgUseTidy HTML table will work too. It's false by default, but it is true in most Wikimedia projects.

See also conditional table row.

Templates in different versions of MediaWiki

Version 1.6

  • More magic words and the parameter default mechanism were added.
  • <noinclude> and <includeonly> (see above) were added.

Version 1.5

Version 1.4

  • Including the same template more than five times in the same page works from version 1.4, now on all Wikimedia sites. Also new was that subst can be used with parameters.

Version 1.3

Version 1.2.6

  • In MediaWiki version 1.2.6, make a page MediaWiki:mytemplate and refer to it with {{msg:mytemplate}}. In this version parameters are not possible.
  • Compatibility with 1.3, in the sense of having the content in Template:mytemplate, is possible with a redirect from MediaWiki:mytemplate to Template:mytemplate on the 1.2.6 project.

History

When ParserFunctions were not available yet, multiple assignments of parameters with the same name (and thus allowing parameter overrides) were ingeniously used to perform branching, e.g. in the now deleted en:Template:If defined.

Revision history of pages containing templates

Pages in the stored page history consist of wikitext with possible references to templates and images. When viewing an old version of a page, these refer to the current versions of the templates and images, if these still exist. Thus the former composite page is not reconstructed.

Other pages not primarily meant for direct viewing

Pages not primarily meant for direct viewing include, apart from templates:

Notes

<references />

See also

See also Meta:List of templates.


Links to other help pages

Help contents
Meta | Wikinews | Wikipedia | Wikiquote | Wiktionary | commons: | mw: | b: | s: | mw:Manual | google
Versions of this help page (for other languages see below)
Meta | Wikinews | Wikipediahttp://en.wikipedia.org/Help:Template | Wikiquote | Wiktionary
What links here on Meta or from Meta | Wikipedia | MediaWiki
Reading
Go | Search | Stop words | URL | Namespace | Page name | Section
Backlinks | Link | Piped link | Interwiki link | Redirect | Category | Image page
Logging in and preferences
Logging in | Preferences | User style
Editing
Advanced editing | Editing FAQ | Edit toolbar | Export | Import | Shortcuts
Tracking changes
Recent changes (enhanced) | Related changes | Watching pages | Diff
Page history | Edit summary | User contributions | Minor edit | Patrolled edit
Style & formatting
Wikitext examples | Reference card | HTML in wikitext | List | Table | Sorting | Colors
Special input and output
Inputbox | Special characters | Displaying a formula | Images (uploads) | EasyTimeline
Advanced functioning
Template | Advanced templates | Parser function | ParserFunctions | Parameter default
Variable | Magic word | System message | Substitution | Array | Calculation
Page management
Starting a new page | Renaming (moving) a page | Protecting pages | Deleting a page
Special pages
Talk page | Testing | Sandbox | CentralNotice

Template:-

Personal tools
support the site