Template syntax: Difference between revisions

From canbudget Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Templates are shortcuts to re-used displays and functionality. Templates start with double curly braces <nowiki>{{</nowiki>, next comes the template name, then any parameters separated by the pipe | symbol. So [[Template:Todo]] could look like this:
Templates are shortcuts to re-used displays and functionality. Templates start with double curly braces <nowiki>{{</nowiki>, next comes the template name, then any parameters separated by the pipe | symbol, and finally two closing curly braces <nowiki}}</nowiki>. So [[Template:Todo]] could look like this:


   <nowiki>{{todo|your in-text description of the todo item}}</nowiki>
   <nowiki>{{todo|your in-text description of the todo item}}</nowiki>
Complex parameters can be specifically defined using the field=value syntax. Check the [[Special:Template|template]] for more information.


[[Category:Site documentation]]
[[Category:Site documentation]]

Revision as of 23:51, 2 October 2010

Templates are shortcuts to re-used displays and functionality. Templates start with double curly braces {{, next comes the template name, then any parameters separated by the pipe | symbol, and finally two closing curly braces <nowiki}}</nowiki>. So Template:Todo could look like this:

 {{todo|your in-text description of the todo item}}

Complex parameters can be specifically defined using the field=value syntax. Check the template for more information.