On November 27th, 2022, the 8,000th article was added to the SuccuWiki!

Template:Tlsp/doc: Difference between revisions

From SuccuWiki - The Wiki of the Succubi
Jump to navigation Jump to search
(+ja)
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


{{Tlx|{{PAGENAME}}}} is used in template lists. Unlike  
{{Tlx|{{PAGENAME}}}} is used in template lists. Unlike  
{{Tlx|Tlp}} it includes "[[WP:SUBST|subst]]". Unlike
{{Tlx|Tlp}} it includes "subst". Unlike
{{Tlx|Tls}} it allows to specify a parameter. These
{{Tlx|Tls}} it allows to specify a parameter. These
features are hints how to use the specified template.
features are hints how to use the specified template.
Line 14: Line 14:
:{{Tlx|{{PAGENAME}}|template name|3=2=param=value}}  Note: start from 2 because the "name" is parameter 1. Or...
:{{Tlx|{{PAGENAME}}|template name|3=2=param=value}}  Note: start from 2 because the "name" is parameter 1. Or...
:{{Tlx|{{PAGENAME}}|template name|param=value}}
:{{Tlx|{{PAGENAME}}|template name|param=value}}
;For templates supporting [[Help:Substitution#Optional_substitution|optional substitution]] just add <tt>subst=subst:</tt>
;For templates supporting optional substitution just add <tt>subst=subst:</tt>
:{{Tlx|{{PAGENAME}}|template name|1|2|3|6=subst=subst:}}
:{{Tlx|{{PAGENAME}}|template name|1|2|3|6=subst=subst:}}


Line 48: Line 48:
''For similar examples see [[Template talk:Tlx#Example|Tlx]].''
''For similar examples see [[Template talk:Tlx#Example|Tlx]].''


=== Comparison ===
{|
| '''Code'''
| '''Result'''
|-
| {{Tlx|tl|x0}}
| {{tl|x0}}
|-
| {{Tlx|tlp|x1|param}}
| {{tlp|x1|param}}
|-
| {{Tlx|tls|x0}}
| {{tls|x0}}
|-
| {{Tlx|tlsp|x3|1st|2nd|3rd|4th|5th}}
| {{tlsp|x3|1st|2nd|3rd|4th|5th}}
|-
| {{Tlx|tlu|template:x3|1st|2nd|3rd}} &#160;
| {{tlu|template:x3|1st|2nd|3rd}}
|-
| {{Tlx|tlx|x3|1st|2nd|3rd}}
| {{tlx|x3|1st|2nd|3rd}}
|}{{-}}
=== See also ===
* {{Lts|{{PAGENAME}}}} up to five parameters
* {{Lts|Tl}} no parameter and no subst
* {{Lts|Tlp}} Tl + parameter
* {{Lts|Tls}} Tl + subst
* {{Lts|Tlu}} like Tlx in any namespace
* {{Lts|Tlx}} like Tlsp without subst


<includeonly>
<includeonly>
[[Category:Internal link templates|Tlsp]]
[[Category:Internal link templates|Tlsp]]
[[ar:قالب:Tlsp]]
[[ja:Template:Tlsp]]
[[no:Template:Tlsp]]
[[pt:Predefinição:Lpsp]]
[[uk:Шаблон:Tlsp]]
</includeonly>
</includeonly>

Latest revision as of 20:38, 9 October 2012

{{Tlsp/doc}} is used in template lists. Unlike {{Tlp}} it includes "subst". Unlike {{Tls}} it allows to specify a parameter. These features are hints how to use the specified template.

Usage

Up to five placeholders for parameters of the specified template name:
{{Tlsp/doc|template name}}
{{Tlsp/doc|template name|param}}
{{Tlsp/doc|template name|1|2|3|4|5}}
{{Tlsp/doc|template name|2=param=value}} Note: start from 2 because the "name" is parameter 1. Or...
{{Tlsp/doc|template name|param&#61;value}}
For templates supporting optional substitution just add subst=subst:
{{Tlsp/doc|template name|1|2|3|subst=subst:}}

Example

Code Result
{{tlsp|template}} {{subst:template}}
{{tlsp|template|1st|2nd|3rd|4th|5th}} {{subst:template|1st|2nd|3rd|4th|5th}}
{{tlsp|template|2=param=value}} {{subst:template|param=value}}
{{tlsp|template|param&#61;value}} {{subst:template|param=value}}
{{tlsp|template|1|2|3&#124;okay}} {{subst:template|1|2|3|okay}}
{{tlsp|template|1|2|3|4|5|too many}} {{subst:template|1|2|3|4|5}}{{tlsp}} only supports up to 5 template parameters
{{tlsp|template|1|2|3|4|5|subst=subst:}} {{subst:template|1|2|3|4|5|subst=subst:}}

For similar examples see Tlx.