wikipedia>SMcCandlish
m Examples: numbering cleanup
Xeverything11 (talk | contribs)
m 111 revisions imported: Import from SkyWiki
 
(103 intermediate revisions by 55 users not shown)
Line 3: Line 3:


== Usage ==
== Usage ==
This template is for giving examples of [[Wikipedia:Template|template]] parameter source code (useful in template documentation and talk page discussions of template code). It must have at least one of two parameters itself. The first is the name of the parameter to display, and the second is a value for that parameter
This template is for giving examples of template parameter source code (useful in template documentation and talk page discussions of template code).


===Examples===
It must have at least one or two parameters itself. The first parameter is the name of the example parameter to display (this may be ''empty'', but it must be ''present''). The second (optional) parameter is a value for the first example parameter; or, if the first parameter is empty, the second illustrates an example [[mw:Help:Templates#Anonymous parameters|unnamed parameter]] (which in some cases may serve as a pre-defined parameter that takes no <code>{{!}}{{=}}value</code> after it, e.g. the {{para||section}} in {{tlx|Refimprove|section|SISTER=w:}}).
#&nbsp;&nbsp;{{tlx|para|name}}
#:renders as
#:{{para|name}}
#&nbsp;&nbsp;{{tlx|para|title|&lt;var&gt;book title&lt;/var&gt;}}
#:renders as
#:{{para|title|<var>book title</var>}}
#&nbsp;&nbsp;{{tlx|para|3=section|2=<span style="font-size: 1pt;">&nbsp;</span>}}
#:renders as
#:{{para||section}}
#:(for unnamed parameters)
#&nbsp;&nbsp;{{tlx|para|&lt;var&gt;parameter&lt;/var&gt;|&lt;var&gt;value&lt;/var&gt;}}
#:renders as
#:{{para|<var>parameter</var>|<var>value</var>}}


When using literal, pre-specified values, simply provide the value (appearance as in example 3). When illustrating hypothetical, variable or user-definable values, use <code><nowiki><var>value</var></nowiki></code> (appearance as in example 2), and the same should be done for non-literal, example parameters (as in example 4).
=== Examples ===
{| class="wikitable"
! Code
! Result
! Notes
|-
| {{tlx|para|name}}
| {{para|name}}
|
|-
| {{tlx|para|title|The Oxford English Dictionary}}
| {{para|title|The Oxford English Dictionary}}
|
|-
| {{tlx|para|2=<span style="font-size:1pt;">&nbsp;</span>|3=section}}
| {{para||section}}
| For [[mw:Help:Templates#Parameters|unnamed parameters]]; note empty first parameter in the code
|-
| <code><nowiki>{{para|parameter|value}}</nowiki></code>
| {{para|parameter|value}}
|
|}


== See also ==
== Parameters ==
* [[Template:Tlx]] &ndash; for providing examples of entire-template code with included parameters
* {{para|1}} or first unnamed parameter – the parameter name. Give this parameter as explicitly blank and just fill in parameter 2 when you want to show an [[mw:Help:Templates#Anonymous parameters|unnamed parameter]] (which, depending on the context, may serve as a valueless parameter name); e.g., {{tlx||para||section}} → {{para||section}}
* {{para|2}} or second unnamed parameter – the value name.  When the first parameter is given but is blank, the second represents an unnamed parameter's value (or a valueless parameter name), as illustrated above.
* {{para|plain|y}} (or any other value besides y) – removes the faint border and light-grey background, which may be useful in various situations. The border and text color are set to inherit, to use the colors of the surrounding text. This parameter cooperates with the two below, in that if either are used, the text will be colorized while the border and background will still be removed.
* {{para|style}} – to apply arbitrary CSS style, for some specialized contextual purpose. Example: {{para|style|background-color: Yellow;}}. Any color, background-color, or border specified here will override those provided by any of the above parameters, regardless of the order in which the parameters are given in the template.  As this template uses a span element, only CSS that can apply to inline elements (not block elements) will work. Like the above parameters, it applies to the entire output.
** If you want to only style the parameter name and/or the value, just do so directly;<br />e.g.: <code><nowiki>{{para|page|'''single''' page number}}</nowiki></code>, <code><nowiki>{{para|page'''''<u>s</u>'''''|page '''range''', or '''multiple''' individual pages, or both}}</nowiki></code><br />gives: {{para|page|'''single''' page number}}, {{para|page'''''<u>s</u>'''''|page '''range''', or '''multiple''' individual pages, or both}}


==TemplateData==
<templatedata>
{
"params": {
"1": {
"label": "Parameter name",
"description": "The parameter name. Give this parameter as explicitly blank and just fill in parameter 2 when you want to show an unnamed parameter",
"type": "string",
"suggested": true
},
"2": {
"label": "Value name",
"description": "The value name. When the first parameter is given but is blank, the second represents an unnamed parameter's value (or a valueless parameter name).",
"type": "string",
"suggested": true
},
"plain": {
"description": "Removes the faint border and light-grey background",
"type": "boolean"
},
"style": {
"description": "Apply arbitrary CSS style, for some specialized contextual purpose.",
"example": "background-color: Yellow;",
"type": "content"
}
},
"description": "Gives examples of template parameter source code"
}
</templatedata>
<includeonly>
<includeonly>
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
[[Category:Templates]]
 
</includeonly>
</includeonly>

Latest revision as of 06:25, 29 April 2025

Template:Documentation subpage

Usage[edit source]

This template is for giving examples of template parameter source code (useful in template documentation and talk page discussions of template code).

It must have at least one or two parameters itself. The first parameter is the name of the example parameter to display (this may be empty, but it must be present). The second (optional) parameter is a value for the first example parameter; or, if the first parameter is empty, the second illustrates an example unnamed parameter (which in some cases may serve as a pre-defined parameter that takes no |=value after it, e.g. the |section in {{Refimprove|section}}).

Examples[edit source]

Code Result Notes
{{para|name}} |name=
{{para|title|The Oxford English Dictionary}} |title=The Oxford English Dictionary
{{para| |section}} |section For unnamed parameters; note empty first parameter in the code
{{para|parameter|value}} |parameter=value

Parameters[edit source]

  • |1= or first unnamed parameter – the parameter name. Give this parameter as explicitly blank and just fill in parameter 2 when you want to show an unnamed parameter (which, depending on the context, may serve as a valueless parameter name); e.g., {{[[Template:|]]|para|section}}|section
  • |2= or second unnamed parameter – the value name. When the first parameter is given but is blank, the second represents an unnamed parameter's value (or a valueless parameter name), as illustrated above.
  • |plain=y (or any other value besides y) – removes the faint border and light-grey background, which may be useful in various situations. The border and text color are set to inherit, to use the colors of the surrounding text. This parameter cooperates with the two below, in that if either are used, the text will be colorized while the border and background will still be removed.
  • |style= – to apply arbitrary CSS style, for some specialized contextual purpose. Example: |style=background-color: Yellow;. Any color, background-color, or border specified here will override those provided by any of the above parameters, regardless of the order in which the parameters are given in the template. As this template uses a span element, only CSS that can apply to inline elements (not block elements) will work. Like the above parameters, it applies to the entire output.
    • If you want to only style the parameter name and/or the value, just do so directly;
      e.g.: {{para|page|'''single''' page number}}, {{para|page'''''<u>s</u>'''''|page '''range''', or '''multiple''' individual pages, or both}}
      gives: |page=single page number, |pages=page range, or multiple individual pages, or both

TemplateData[edit source]

Gives examples of template parameter source code

Template parameters

ParameterDescriptionTypeStatus
Parameter name1

The parameter name. Give this parameter as explicitly blank and just fill in parameter 2 when you want to show an unnamed parameter

Stringsuggested
Value name2

The value name. When the first parameter is given but is blank, the second represents an unnamed parameter's value (or a valueless parameter name).

Stringsuggested
plainplain

Removes the faint border and light-grey background

Booleanoptional
stylestyle

Apply arbitrary CSS style, for some specialized contextual purpose.

Example
background-color: Yellow;
Contentoptional