Help:Template

From HandWiki

Creation

Templates are standard wiki pages whose content is designed to be [[<tvar name=1>Special:MyLanguage/Transclusion</tvar>|transcluded]] (embedded) inside other pages. Templates follow a convention that the name is prefixed with "Template:", assigning it to that [[<tvar name=2>Special:MyLanguage/Help:Namespaces</tvar>|namespace]]; besides this, you can [[<tvar name=3>Special:MyLanguage/Help:Starting a new page</tvar>|create them like any other wiki page]].

The simplest use of templates is as follows. If you create a page called "Template:Welcome" with contents: </translate>

<translate> Hello! Welcome to the wiki.</translate>

<translate> you have created your first template! If you then insert the code: </translate>

<translate> {{Welcome}}</translate>

<translate> in any other page, when that page is viewed, the text "Hello! Welcome to the wiki." will appear instead of {{Welcome}}. The template content is "transcluded" into the other page, i.e., it is integrated in the page.

You can then insert {{Welcome}} at any point of any page where you wish to welcome someone. Suppose it is used in 100 pages. If you then change the template contents to: </translate>

<translate> Hi there! Welcome to this wonderful wiki.</translate>

<translate> and revisit any of the 100 pages where the template was used, you'll see the new text instead of the original one. In this way, you have changed the content of 100 pages without editing them, because the template is transcluded into these pages.

This is the basic mechanism. There are several additional features of transclusion that enrich this mechanism and make templates very useful.

Usage

Templates can be used in other pages in these ways:

  • {{Name}} — as described above, this link will be dynamically replaced by the current content of [[Template:Name]] at the time the page with the template link is loaded. The link will remain unchanged in the page's source.</translate>

<translate>

  • {{subst:Name}} — when this template link is used, it will be replaced once and for all with the content of [[Template:Name]] as of the time the page with the link is saved: a copy of the contents of [[Template:Name]] will be substituted for the template link. The contents are then a part of the including page, and can be edited normally, separately from the original. Note: later changes to the source template page will not be propagated to the page with the template link.</translate>

<translate>

<translate>

  • {{msgnw:Name}} includes the template in a form that displays it as raw wiki syntax (the way <tvar name=1><nowiki></tvar> does) when the page containing it is fetched.

In fact, an ordinary wiki page can also be used as a template, simply by specifying the namespace it resides in, so:

  • {{Template:Pagename}} includes [[Template:Pagename]]</translate>

<translate>

  • {{Talk:Pagename}} includes [[Talk:Pagename]]</translate>

<translate>

  • {{:Pagename}} includes [[Pagename]]</translate>

<translate>

    • {{subst::Pagename}} replaces itself with the contents of [[Pagename]]

If no such namespace exists, the full title is assumed to be a template:

  • {{Foo:Bar}} includes [[Template:Foo:Bar]]

</translate>

<translate>

Parameters

To enrich the mechanism of transclusion, MediaWiki allows parameters to be passed to a template when it is transcluded. Parameters allow the template to produce different contents or have different behaviors.

Suppose you wish to insert a little thank you note in the [[<tvar name=1>Special:MyLanguage/Help:Talk pages</tvar>|talk page]] of other users, such as:


The thank you note will have a reason (in this case, "all your effort") and a signature ("Me"). Your objective is that any user be able to thank any other user, for any reason whatsoever. </translate>

<translate> So that the note will look similar everywhere it is used, you can define a template called <tvar name=tmpl>Template:Thankyou </tvar>, for example.</translate> <translate> Although the note should look similar whenever a user thanks another user, its specific contents (i.e. the reason and the signature) will be different.</translate> <translate> For that reason, you should pass them as parameters.</translate> <translate> If we ignore the remaining elements to format the box and place the image, the core content of the template will be this:</translate>

<translate nowrap><!--T:32-->
'''A little thank you...'''
for {{{1}}}.
hugs, {{{2}}}</translate>

<translate> Notice the use of <tvar name=1>{{{1}}}</tvar> and <tvar name=2>{{{2}}}</tvar>. This is the way to identify, within templates, the parameters that will be passed in when the template is used. Note that, within the template, each parameter is surrounded by three braces: <tvar name=braces>{{{ }}}</tvar>. This is different from normal template name usage.

When using the template on a page, you fill in the parameter values, separated by a "pipe" character (<tvar name=pipe>|</tvar>). MediaWiki allows parameters to be passed to the template in three ways: Anonymously, Numbered, and Named. </translate>

<translate>

Anonymous parameters

To pass in anonymous parameters, list the values of those parameters sequentially: </translate>

<translate> {{Thankyou|all your effort|Me}}</translate>

<translate> In this case, the {{Thankyou}} template receives parameters {{{1}}}=all your effort and {{{2}}}=Me, producing:


The order in which anonymous parameters are passed in is crucial to its behavior. Reversing the order of the parameters, like so: </translate>

<translate> {{Thankyou|Me|all your effort}}</translate>

<translate> would produce this result:


</translate>

<span class="citation wikicite" id="endnote_<translate> Identifying parameters by order (with <tvar name=1>{{{1}}}</tvar>, etc.) works only with anonymous parameters.</translate> <translate> Any parameters identified by name, as shown below, will not be accessible to the template using ordinal numbers.</translate>">[[#ref_<translate> Identifying parameters by order (with <tvar name=1>{{{1}}}</tvar>, etc.) works only with anonymous parameters.</translate> <translate> Any parameters identified by name, as shown below, will not be accessible to the template using ordinal numbers.</translate>|^]]

<span class="citation wikicite" id="endnote_<translate> If an equal sign appears inside the argument to an anonymous template parameter, that parameter may be misinterpreted as a [[<tvar name=1>#Named parameters</tvar>|named parameter]] (which is explained below in this document) treating the text before the equal sign as the parameter name and the text after it as the argument value.</translate> <translate> This is a common problem when you need to include an external link, or an HTML element with attributes (see <tvar name=1>Template:Task</tvar>).</translate> <translate> The workaround is to use named parameters instead, or even numbered parameters as explained in the following section.</translate>">[[#ref_<translate> If an equal sign appears inside the argument to an anonymous template parameter, that parameter may be misinterpreted as a [[<tvar name=1>#Named parameters</tvar>|named parameter]] (which is explained below in this document) treating the text before the equal sign as the parameter name and the text after it as the argument value.</translate> <translate> This is a common problem when you need to include an external link, or an HTML element with attributes (see <tvar name=1>Template:Task</tvar>).</translate> <translate> The workaround is to use named parameters instead, or even numbered parameters as explained in the following section.</translate>|^]]

<translate>

Numbered parameters

To pass in parameters by number, identify each parameter when passing it: </translate>

<translate> {{Thankyou|2=Me|1=your friendship}}</translate>

<translate> This time, template {{Thankyou}} receives parameters {{{1}}}=your friendship and {{{2}}}=Me, though they have been supplied in inverse order, and produces:


</translate>

<span class="citation wikicite" id="endnote_<translate> This may also be useful when any of the numbered parameters contains an "<tvar name=1>=</tvar>" sign.</translate>">^

<translate> Examples
</translate>
<translate><!--T:207--> {{Thankyou|1=adding “=”|2=Me}}</translate>

<translate> produces:</translate>

<translate> </translate>

<translate>

Named parameters

The third way of passing parameters is by name instead of numbers. In this case, the template contents would be changed to:

'''A little thank you...'''
for {{{reason}}}.
hugs, {{{signature}}}

Within the template, we use {{{reason}}} and {{{signature}}} to identify each parameter, instead of a number. To pass these parameters by name, identify each parameter when passing it: </translate>

<translate> {{Thankyou|signature=Me|reason=being who you are}}</translate>

<translate> In this case, template {{Thankyou}} receives parameters {{{reason}}}=being who you are and {{{signature}}}=Me and produces:


Named parameters are case-sensitive, so:

{{Thankyou|signature=Me|Reason=being who you are|reason=being case-sensitive}}

produces:


The advantage of using named parameters in your template, besides also being flexible in the order parameters can be passed, is that it makes the template code much easier to understand if there are many parameters.

Default values

If you transclude a template that expects parameters, but do not provide their arguments, in this way: </translate>

<translate> {{Thankyou}}</translate>

<translate> in the numbered parameters example above you would get the following: </translate>


<translate> Since no arguments were passed in, the template presents the parameters themselves, instead of their respective values. In these cases, it may be useful to define default values for the parameters, i.e. values that will be used if no value is passed in. For example, if the template contents are changed to: </translate>

<translate nowrap><!--T:62-->
'''A little thank you...'''
for {{{reason|everything}}}.
hugs, {{{signature|Me}}}</translate>

<translate> then {{{reason|everything}}} defines that if no argument is provided for parameter {{{reason}}}, then the value everything will be used. Similarly, {{{signature|Me}}}, defaults parameter {{{signature}}} to value Me. Now, transcluding the template again without passing any argument results in the following: </translate>

<translate>

</translate>

<span class="citation wikicite" id="endnote_<translate> The value of a parameter can be an empty string.</translate> <translate> For example, in <tvar name=1>{{foo|bar=}}</tvar> or <tvar name=2>{{foo|bar=|baz=qux}}</tvar>, the foo template considers the <tvar name=3>bar</tvar> parameter to be <tvar name=4>""</tvar>.</translate> <translate> This is different from omitting the parameter altogether, which leaves it undefined and triggers the default value mechanism described above.</translate>">[[#ref_<translate> The value of a parameter can be an empty string.</translate> <translate> For example, in <tvar name=1>{{foo|bar=}}</tvar> or <tvar name=2>{{foo|bar=|baz=qux}}</tvar>, the foo template considers the <tvar name=3>bar</tvar> parameter to be <tvar name=4>""</tvar>.</translate> <translate> This is different from omitting the parameter altogether, which leaves it undefined and triggers the default value mechanism described above.</translate>|^]]

<translate> Often default values are used to specify alternate names of parameters.</translate> <translate> For example, if you have <tvar name=1>{{{a|{{{b|}}} }}}</tvar>, the template will first look for a parameter named "<tvar name=2>a</tvar>".</translate> <translate> If it is not set, it will use the parameter named "<tvar name=1>b</tvar>".</translate> <translate> If neither "<tvar name=1>a</tvar>" nor "<tvar name=2>b</tvar>" is set, it will output nothing.</translate>

<translate>

Evaluation

</translate> <span class="citation wikicite" id="endnote_<translate> This is an advanced topic which you can skip unless you need it.</translate>">^

<translate> Generally speaking, template parameters are substituted into the template after tokenization, but as is.</translate> <translate> They are not evaluated until they are used.</translate>

<translate> This has a few consequences.</translate> <translate> First of all, if you have a <tvar name=1>Template:Start</tvar> containing <tvar name=2>{{mytemplate</tvar>, and a <tvar name=3>Template:End</tvar> containing <tvar name=4>|foo=bar}}</tvar>, and put <tvar name=5>{{start}}{{end}}</tvar> on a page, mytemplate isn't transcluded, because tokens like "|" cannot be added by a template and keep their special meaning in templates.</translate> <translate> You can still use templates to control the name of a parameter or template, but you cannot split a template call amongst multiple templates.</translate>

<translate> The second consequence of this is dead-code elimination.</translate> <translate> If you make a template call like <tvar name=1>{{foo|{{DISPLAYTITLE:Bar}} }}</tvar>, and Template:Foo does not contain <tvar name=2>{{{1}}}</tvar>, then the displaytitle is not used, since it is only evaluated when needed, and it there is no parameter to substitute it into, so it is never evaluated.</translate> <translate> This usually comes into play when using [[<tvar name=1>Special:MyLanguage/Extension:ParserFunctions</tvar>|Extension:ParserFunctions]], and can be especially noticed when used in combination with the <tvar name=2>int:</tvar> magic word that varies by user language.</translate>

<translate> Template calls starting with the magic word <tvar name=1>subst:</tvar> or <tvar name=2>safesubst:</tvar> are evaluated in a separate first pass that only happens at save time, along with <tvar name=3>~~~~</tvar> and links using the [[<tvar name=4>Special:MyLanguage/pipe trick</tvar>|pipe trick]].</translate> <translate> If they cannot be evaluated during the first pass, <tvar name=1>subst:</tvar> calls are ignored, and <tvar name=2>safesubst:</tvar> are treated as if a normal template.</translate>

<translate> Many but not all parser functions, parser tags and trancluded special pages are not directly included like templates but instead are replaced by a "strip marker".</translate> <translate> This means you cannot manipulate the results with parser functions like <tvar name=1>padleft:</tvar> or similar functions from extensions, as they see the strip marker instead of the result of the parser function.</translate>

<translate>

Recursion in templates

</translate> <translate> Including a template in itself won't throw MediaWiki into infinite recursion.</translate> <translate> MediaWiki will stop the recursion with the template's name in bold.</translate> <translate> For example, if the content of Template:Aaaa is <tvar name=code>a {{Aaaa}} z</tvar>, it'll display "<tvar name=result>a a Template loop detected: Template:Aaaa z z</tvar>".</translate>

<translate>

Forbidden idiom

</translate> <translate> This safeguard precludes a potentially useful template idiom where a template self-normalizes its own calling arguments.</translate> <translate> In this forbidden example <tvar name=1>template:d</tvar> can either be called <tvar name=2>{{d|20200311}}</tvar> or <tvar name=3>{{d|y=2020|m=3|d=11}}</tvar>.</translate> <translate> If called in the first manner, it recurses into itself with the second argument structure (obtained using string parser functions), which then follows a unified processing path.</translate>

{{#if:{{{1|}}}|{{d|y={{#sub:{{{1}}}|0|4}}|m={{#sub:{{{1}}}|4|2}}|d={{#sub:{{{1}}}|6|2}}}}|<!-- processing path with arguments y,m,d regardless of original call pattern -->}}

<translate> If <tvar name=1>template:d</tvar> is modified to recurse into <tvar name=2>template:d/2</tvar> and <tvar name=3>template:d/2</tvar> is an identical manual copy of <tvar name=4>template:d</tvar> this idiom works fine as the self-recursion safeguard operates dynamically and not statically.</translate>

<translate> A feasible way for the MediaWiki software to loosen the self-recursion rule would be to require that each recursive call have a distinct argument count from all previous active calls, at most once recursing with the argument count non-decreasing.</translate> <translate> That would provide a strong guarantee against infinite self-recursion while enabling useful idioms such as the one described here in a flexible manner.</translate>

<translate> If the processing path is of low complexity, a simple solution using only one template is to handle each calling convention on a separate if/else branch, duplicating the logic of the processing path within each case.</translate> <translate> If the processing path is more complex, each call-structure case can delegate to an implementation template with a unified call structure which provides the final template behaviour.</translate>

<translate>

Tables in parameters

</translate> <translate> Since the syntax for wikitables involves pipes in single braces ({ }) and using the pipe trick will not work in transclusion parameters, one will have to create a table as a separate page and transclude it from there.</translate>[1]

<translate>

Control template inclusion

By default, a template's content is displayed in its entirety, both when viewed directly and when included in another page. However, you can control which parts of a template will be seen and included by the use of the <tvar name=noinclude><noinclude></tvar>, <tvar name=includeonly><includeonly></tvar> and <tvar name=onlyinclude><onlyinclude></tvar> tags.

Anything between <tvar name=noinclude_start><noinclude></tvar> and <tvar name=noinclude_end></noinclude></tvar> will be seen only when the template's page is being viewed directly, but not when it is included in another page. This is useful when you want to include text or code in a template that you do not want to propagate to any pages which include it, such as:

  • [[<tvar name=1>Special:MyLanguage/Help:Categories</tvar>|Category]] links when categorizing the template itself</translate>

<translate>

  • [[<tvar name=1>Special:MyLanguage/Help:Links#Interlanguage links</tvar>|interlanguage links]] to similar templates in other languages</translate>

<translate>

  • Explanatory text about how to use the template

Likewise, anything between <tvar name=includeonly_start><includeonly></tvar> and <tvar name=includeonly_end></includeonly></tvar> will be processed and displayed only when the page is being included, but not when the template page is being viewed directly, and is useful in situations such as:

  • [[<tvar name=1>Special:MyLanguage/Help:Categories</tvar>|Categorizing]] pages which include the template. Note: when changing the categories applied by a template in this fashion, the categorization of the pages which include that template may not be updated until some time later: this is handled by the {{<tvar name=2>ll|Manual:Job queue</tvar>|job queue}}. To force the re-categorization of a particular page, open that page for editing and save it without changes.</translate>

<translate>

  • Ensuring that the template's code is not executed when viewing the template page itself. Typically this is because it expects parameters, and its execution without parameters has an undesired result.

</translate>

<translate> Everything outside <tvar name=noinclude><noinclude></tvar> and <tvar name=includeonly><includeonly></tvar> is processed and displayed normally; that is, both when the template page is being viewed directly and when the template is included in another page.</translate> <translate> The focus is on what is inside these two tags.</translate>

<translate> Everything outside <tvar name=onlyinclude><onlyinclude></tvar> tags is discarded in the transclusion.</translate> <translate> Even sections tagged includeonly are discarded in the transclusion unless they are also tagged as onlyinclude.</translate> <translate> The focus is on what is outside this tag.</translate>

<translate> Nesting of these tags is also possible. </translate>

<translate> The three partial transclusion tags enable all possible combinations of what is processed and rendered.</translate> <translate> Comments also fill a role.</translate>

<translate>

Organizing templates

For templates to be effective, users need to find them, and find out how to use them.

To find them, users can:

  1. Click <tvar name=special>Special pages</tvar> > <tvar name=all>All pages</tvar>
  2. In the <tvar name=ns>Namespace:</tvar> list, choose Template and click <tvar name=submit>Go</tvar>.

To give usage information, include an example like this one on the template page:

<noinclude>
== Usage ==
Welcome users:
{{Thankyou|reason=your reason|signature=your signature}}
</noinclude>

Then, an editor can simply copy and paste the example to use the template.

Linking to a template

A template page can be linked to like any other wiki page. For example, the link <tvar name=navbarlink>Template:Navbar</tvar> is generated using the wikicode <tvar name=navbarcode>[[Template:Navbar]]</tvar>.

On many wikis, <tvar name=1>Template:Tl</tvar> can be used to provide a link to a template formatted in a way that shows the "double curly-braces" wikicode necessary to transclude the template without actually doing the tranclusion. For example, the code <tvar name=2>{{tl|Navbar}}</tvar> may be used to create the link <tvar name=3>{{Navbar}}</tvar>. </translate>

<translate> This construct is commonly used when referring to templates in template documentation, on help pages, and on talk pages.</translate> <translate> The same effect can be achieved by using <tvar name=1>{{[[Template:Navbar|Navbar]]}}</tvar>, but the <tvar name=2>{{tl}}</tvar> approach involves much less typing.</translate> <translate> On any given wiki the Tl template, if it exists, may or may not render the text in a "code" element or as monospace type.</translate> <translate> If not (as on this wiki), another similarly named template may do so.</translate> <translate> See, for example, the [[<tvar name=1>Template:Tl#See also</tvar>|"See also" section of our Template:Tl documentation]].</translate>

<translate>

Copying from one wiki to another

Templates often require [[<tvar name=1>m:Special:MyLanguage/Help:Cascading_style_sheets</tvar>|CSS]] or other templates, so users frequently have trouble copying templates from one wiki to another. The steps below should work for most templates.

MediaWiki code

If you have import rights (specifically importupload) on the new wiki:

  1. Go to <tvar name=export>Special:Export</tvar> on the original wiki, and download an .xml file with the complete history of all necessary templates, as follows:</translate>

<translate>

    • Enter the name of the template in the big text box, e.g. "Template:Welcome". Pay special attention to capitalization and special characters — if the template name isn't exactly correct, the export may still occur but the .xml file will not have the expected data.</translate>

<translate>

    • Select the box "<tvar name=export>Include templates</tvar>".</translate>

<translate>

    • Select the box "<tvar name=export2>Include only the current revision, not the full history</tvar>".</translate>

<translate>

    • Click "<tvar name=1>Export</tvar>".</translate>

<translate>

  1. Go to Special:Import on the new wiki and upload the .xml file.

If you don't have import rights on the new wiki:

  1. Go to the template you want to copy from the original wiki. Go to the edit page, and copy all the wikitext
  2. On the new wiki, go to the page with the same name as the template you copied. Hit create/edit and paste the wikitext you copied. In the edit summary of each template, link to the original page for attribution.
  3. Back in the original wiki at the edit window, below the edit box, look at the list of "Templates used on this page". For each template listed follow these instructions. Also do that for any template used by any of these templates, and so on.

</translate>

<translate> This will copy the entire code necessary, and will suffice for some templates.</translate> <translate> Note that only page elements parsed in rendering the page get exported, consequently documentation subpages are not exported as part of this process.</translate> <translate> If it doesn't work also check for red links listed under "Pages transcluded onto the current version of this page:", below the edit box. If there are any repeat the above steps for these as well and also copy the code in the modules.</translate>

<translate> After successfully importing the template and all its linked templates from the other wiki, edit it to change customisations to suit your wiki. For example to change a logo, remove redundant categories or red links.

Extensions

</translate> <translate> An extension often used in templates is ParserFunctions.</translate> <translate> Visit page <tvar name=1>Extension:ParserFunctions </tvar> and check if any of the functions listed there are used in the templates you've copied.</translate> <translate> If so, you have to install the <tvar name=1>Extension:ParserFunctions </tvar> extension.</translate> <translate> To install it, you'll need system admin access to the server of your MediaWiki installation.</translate>

<translate> Another dependency that may be used in templates, especially those on Wikipedia, is Lua. Having <tvar name=invoke>{{#invoke: }}</tvar> in template code is a good sign for it.</translate> <translate> In case it's used, you need to install the <tvar name=1>Extension:Scribunto </tvar> extension and system admin access is required too.</translate> <translate> See that page for more instructions about installing and using the extension.</translate>

<translate>

CSS and JavaScript code

Besides MediaWiki code, many templates make use of CSS and some rely on JavaScript to work fully. If the copied templates are not behaving as expected, this may be the cause. To copy the required CSS and JavaScript to your wiki you'll normally need to have admin privileges, because you'll be editing system messages in the "MediaWiki:" namespace.

  1. Look for the use of CSS classes (text like class="foobar") in the template text. If those classes appear in "MediaWiki:Common.css" or "MediaWiki:Monobook.css" on the original wiki, copy those classes to "MediaWiki:Common.css" on the new wiki and check if the template is now fine.</translate>

<translate>

  1. If the copied template is still not working as expected, check if there is code in "MediaWiki:Common.js" or "MediaWiki:Monobook.js" on the original wiki. If so, you can try copying it to "MediaWiki:Common.js" on the new wiki. Normally, it is a good idea to only copy code from trusted sources, and first browsing the code to identify and select the parts that are relevant. You may find comments that can serve as clues to identify the functionality of each part.

See also

General template usage

</translate>

<translate>

  • [[<tvar name=1>m:Special:MyLanguage/Help:Template</tvar>|m:Help:Template]] – much more thorough manual on how exactly templates function</translate>

<translate>

  • [[<tvar name=1>m:Special:MyLanguage/Help:Advanced templates</tvar>|m:Help:Advanced templates]] – describes even more advanced techniques such as dynamic template calls and variable parameter names

Special constructs used in templates

</translate>

<translate>

Other relevant information

</translate>

<translate>

  • [[<tvar name=1>m:Special:MyLanguage/Help:Embed page</tvar>|m:Help:Embed page]] – embedding pages from [[<tvar name=ns>Special:MyLanguage/Help:Namespaces</tvar>|namespaces]] other than Template:

External links

</translate>

  1. <translate> Look at the invisible comment</translate>