Template:!/doc
Appearance
![]() |
This is a metatemplate; that is, a template that will rarely be used directly in articles, but rather used in other templates which will be used directly. |
This template is used inside other templates to generate a vertical bar (|), since doing so would confuse the template syntax parser. You would primarily use this if your template generated a table.
{{!}}
{{{!}}class="wikitable" {{!}}- !Header 1 !Header 2 {{!}}- {{!}}Cell 1 {{!}}Cell 2 {{!}}- {{!}}}
would turn into:
{|class="wikitable" |- !Header 1 !Header 2 |- |Cell 1 |Cell 2 |- |}
and thus render as:
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |