Template:Bullet

From blackwiki
Revision as of 13:17, 15 February 2007 by imported>David Kernow (typo correction)
Jump to navigation Jump to search
  • {{{1}}}



This template is used solely within other templates to make it possible to include a bullet without a new line, which sometimes breaks template code.

For instance, the following requires a new line to have a bullet within the template code...

{{#switch:{{{1}}}
|hello
|goodbye
|bullet=
* Bullet!
}}

whereas this template can avoid that...

{{#switch:{{{1}}}
|hello
|goodbye
|bullet={{bullet|Bullet!}}
}}