On November 27th, 2022, the 8,000th article was added to the SuccuWiki!
Template:Tlsp/doc: Difference between revisions
Jump to navigation
Jump to search
m (1 revision: Almost done) |
mNo edit summary |
||
Line 2: | Line 2: | ||
{{Tlx|{{PAGENAME}}}} is used in template lists. Unlike | {{Tlx|{{PAGENAME}}}} is used in template lists. Unlike | ||
{{Tlx|Tlp}} it includes " | {{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 | ;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 71: | Line 71: | ||
| {{tlx|x3|1st|2nd|3rd}} | | {{tlx|x3|1st|2nd|3rd}} | ||
|}{{-}} | |}{{-}} | ||
<includeonly> | <includeonly> | ||
[[Category:Internal link templates|Tlsp]] | [[Category:Internal link templates|Tlsp]] | ||
</includeonly> | </includeonly> |
Revision as of 19:37, 9 October 2012
This is a documentation subpage for Template:Tlsp. It contains usage information, categories, interlanguage links and other content that is not part of the original template page. |
{{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=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=value}}
|
{{subst:template|param=value}} |
{{tlsp|template|1|2|3|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.
Comparison
Code | Result |
{{tl|x0}}
|
{{x0}} |
{{tlp|x1|param}}
|
{{x1|param}} |
{{tls|x0}}
|
{{subst:x0}} |
{{tlsp|x3|1st|2nd|3rd|4th|5th}}
|
{{subst:x3|1st|2nd|3rd|4th|5th}} |
{{tlu|template:x3|1st|2nd|3rd}}
|
{{template:x3|1st|2nd|3rd}} |
{{tlx|x3|1st|2nd|3rd}}
|
{{x3|1st|2nd|3rd}}
|