add links to similar template linkers
Xeverything11 (talk | contribs)
m 247 revisions imported from mhdev:Template:Template_link/doc
 
(133 intermediate revisions by 86 users not shown)
Line 1: Line 1:
{{Documentation subpage}}
{{Documentation subpage}}
<includeonly>{{high-risk| 1,400,000+ }}</includeonly>
<!-- Categories go where indicated at the bottom of this page, please; interwikis go to Wikidata (see also: [[Wikipedia:Wikidata]]). -->
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
The '''template link''' (or "tl") template is a simple [[w:Macro (computer science)|macro]] [[m:Help:template|template]] used to display a template name as a link surrounded by braces, thus showing the template name as code rather than actually invoking it. Its primary use is in instruction and documentation where it is used to refer to a template by name without invoking it.
__NOTOC__


The '''template link''' template is a simple [[w:Macro (computer science)|macro]] [[m:Help:template|template]] used to display a template name as a link surrounded by braces, thus showing how the template name would be used in code. Its primary use is in instruction and documentation. A short example is that the code:
==Examples==
An example of its use is:


::<code><nowiki>{{Tl|Example}}</nowiki></code>
::<code><nowiki>{{tl|Example}}</nowiki></code>
:which generates
::{{tl|Example}}


:generates


::{{Tl|Example}}
== TemplateData ==
<templatedata>{
"description": "This template displays a template name as a link surrounded by braces, thus showing how the template name would be used in code. Its primary use is in instruction and documentation.",
"params": {
"1": {
"label": "template name",
"description": "positional parameter: the template name without the namespace prefix “Template:”, which is added automatically",
"type": "wiki-template-name",
"required": true
}
}
}</templatedata>


More complex variations are described below.
== See also ==
* {{tl|tlx}} to produce a [t]emplate [l]ink with an e[x]panded number of parameters.
===Example===
<includeonly>[[Category:link templates]]</includeonly>
{| class="wikitable"
! Code
! Result
|-
| <code><nowiki>{{Tl|X0}}</nowiki></code>
| {{[[Template:X0|X0]]}}
|-
| <code><nowiki>{{Tl2|X1}}</nowiki></code>
| <tt><nowiki>{{</nowiki>[[{{{LANG|}}}{{{SISTER|}}}{{ns:Template}}:X1|X1]]<nowiki>}}</nowiki></tt>
|-
| <code><nowiki>{{Tl2|SISTER=M:|3x}}</nowiki></code>
| <tt><nowiki>{{</nowiki>[[{{{LANG|}}}M:{{ns:Template}}:3x|3x]]<nowiki>}}</nowiki></tt>
|-
| <code><nowiki>{{Tl2|SISTER=wikibooks|LANG=de:|WP}}</nowiki></code>
| <tt><nowiki>{{</nowiki>[http://de.wikibooks.org/wiki/Vorlage:WP WP]<nowiki>}}</nowiki></tt><!---
----- This is currently a fraudulent output result... the template code needs modified to work
----- per this plan, then this /doc file fixed up to match whatever the correct syntax actually is.
----- ALMOST work:
[[:de:wikibooks:{{ns:template}}:WP|WP]]
[[de:wikibooks:{{ns:template}}:WP|WP]]
---->
|-
| <code><nowiki>{{Tl|1==)}}</nowiki></code>
| {{Tl|1==)}}
|}
 
===See also===
* {{tl|tlc}} – Not linked, several parameters and text in <code>&lt;code&gt;&lt;/code&gt;</code> style.
* {{tl|tld}} – Not linked, several parameters and <tt>teletype</tt> text style.
* {{tl|tlf}} – Not linked, several parameters and normal text style.
 
* {{tl|tlx}} – Template link, several parameters and interwiki links, <tt>teletype</tt> text style.
* {{tl|tn}} – Same as {{tlf|tl}}, but shows the braces as part of the link.

Latest revision as of 07:43, 8 April 2025

Template:Documentation subpage The template link (or "tl") template is a simple macro template used to display a template name as a link surrounded by braces, thus showing the template name as code rather than actually invoking it. Its primary use is in instruction and documentation where it is used to refer to a template by name without invoking it.

Examples

An example of its use is:

{{tl|Example}}
which generates
{{Example}}


TemplateData

This template displays a template name as a link surrounded by braces, thus showing how the template name would be used in code. Its primary use is in instruction and documentation.

Template parameters

ParameterDescriptionTypeStatus
template name1

positional parameter: the template name without the namespace prefix “Template:”, which is added automatically

Templaterequired

See also

  • {{tlx}} to produce a [t]emplate [l]ink with an e[x]panded number of parameters.