Template:Documentation itemlist

From Linux Web Expert

Revision as of 10:49, 7 April 2011 by >Dick6809 (Initial release)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template documentation

Function

This template and it's co-working templates produce a formatted description list for general purpose use.

Please note that this method in a makeshift manner and are in need of some inprovements, e.g. using CSS, being closed in a single template, etc. Therefore, your contributions are highly appreciated.

Usage

{{documentation itemlist/begin}}
{{documentation itemlist
|name= item_name_1
|desc= item_description_1
|opt=  optional / mandatory / blank
|def=  default value_1
}}
{{documentation itemlist
|name= item_name_2
|desc= item_description_2
|opt=  optional / mandatory / blank
|def=  default value_2
}}
:
{{documentation itemlist/end}}

Parameters

  • name 
–  the name of this item.
  • desc 
–  A description of this item.
  • opt 
–  Describs that this item is mandatory or optional.
  • def 
–  The default value of this item.

Examples

The code of "Parameters" section above is:

{{documentation itemlist/begin}}
{{documentation itemlist
|name= name
|desc= the name of this item.
|opt=  mandatory
|def=
}}
{{documentation itemlist
|name= desc
|desc= A description of this item.
|opt=  mandatory
|def=
}}
{{documentation itemlist
|name= opt
|desc= Describs that this item is mandatory or optional.
|opt=  optional
|def=  ''blank''
}}
{{documentation itemlist
|name= def
|desc= The default value of this item.
|opt=  optional
|def=  ''blank''
}}
{{documentation itemlist/end}}

Related templates