Template:Para: Difference between revisions

From Linguifex
Jump to navigation Jump to search
(Created page with "<code><nowiki>|</nowiki>{{#if:{{{1|}}}|<span style="white-space:nowrap;">{{{1}}}</span><nowiki>=</nowiki>|}}{{{2|}}}</code><noinclude> {{Documentation}} <!--Categories and int...")
 
m (1 revision: Moare portal templates from mediawiki)

Revision as of 01:15, 1 September 2013

|


Usage

This template simply displays a parameter name between a vertical line and an equal sign, as is seen in template calls. (This is useful in template documentation and in talk page discussions of templates.)

Parameters

This template takes the following parameters:

  • |1=: the name of the parameter
  • |2=: a corresponding value for the parameter
  • |3=: additional usage text
  • |req=1: indicate that the parameter is required
  • |opt=1: indicate that the parameter is optional

Examples

  1. {{para|name}}
    Result: |name=
  2. {{para|name|req=1}}
    Result: |name=
  3. {{para|name|opt=1}}
    Result: |name=
  4. {{para|opt|1}}
    Result: |opt=1
  5. {{para|title|<var>book title</var>}}
    Result: |title=book title
  6. {{para||section}}
    Result: |section. This is useful for referring to values of unnamed parameters; note the empty first parameter in the template call.
  7. {{para|<var>parameter</var>|<var>value</var>}}
    Result: |parameter=value
  8. {{para|=|foo}}
    Result: |foo=
  9. {{para|2||''optional'' if first parameter is present}}
    Result: |2=

When using literal, pre-specified values, simply provide the value (appearance as in example 6). When illustrating hypothetical, variable or user-definable values, use <var>value</var> (appearance as in example 5), and the same should be done for non-literal, example parameters (as in example 7).

See also

  • Template:tlx – for providing examples of entire-template code with included parameters