Vorlage:Param/doc: Unterschied zwischen den Versionen
This is [[MediaWiki:Tagline]]. Set to <code>display:none</code> by chameleon skin.
Keine Bearbeitungszusammenfassung |
(kein Unterschied)
|
Aktuelle Version vom 26. September 2014, 12:48 Uhr
| This is a documentation subpage for Vorlage:Param. It contains usage information, categories and other content that is not part of the original vorlage page. |
Not to be confused with Template:Para.
This template is for giving examples of template parameter source code which is useful in template documentation and talk page discussions of template code.
Usage
- {{param|foo}} →
{{{foo}}} - {{param|foo|bar}} →
{{{foo|bar}}} - {{param|foo|{{param|bar|nested=yes}}}} →
{{{foo|{{{bar}}}}}} - {{param|foo|{{param|bar|{{param|baz|derp|nested=yes}}|nested=yes}}}} →
{{{foo|{{{bar|{{{baz|derp}}}}}}}}}
Examples involving {{para}}
- {{para|foo|{{param|bar}}}} →
|foo={{{bar}}} - {{para|foo}}{{param|bar}} →
|foo={{{bar}}} - {{para|foo|<var>bar</var>}} →
|foo=bar
See also
- {{para}}
| Template | Example output | Use |
| {{var}} | strIllustratePrefix | To indicate text is a variable name |
| {{para}} | |title= |year=2008
| To display template parameters with or without values. |
| {{param}} | {{{title}}} {{{title|alt}}} etc.
| To display parameters as used in code (i.e. with triple braces), especially to indicate relationships between them. |
| {{tlx}} etc. | {{tlx|first parameter|...}}
| To display a template call (with or without parameters and values) as code. |
| {{tag}} | "With HTML <img>...</img> tags..."
| To render wpen:HTML elements ("tags") as prose. |
| {{code}} | local p = {}
function p.main(frame)
...
end
| To indicate text is source code. |
| {{code snippet}} | "Always include the parameter..."
| To indicate text is source code. To nest other templates within {{code snippet}}, use <code>...</code>.
|
<syntaxhighlight>...</syntaxhighlight> | Parser function | |
| {{pre}} | For larger blocks of source code and other pre-formatted text. | |
| {{pre2}} | For larger blocks of source code and other pre-formatted text. Same as {{pre}} but ads slider for overflowing text |