Template:Tag
Jump to navigation
Jump to search
<tag>...</tag>
This template provides a quick way to mention an XML/HTML-style tag in a preformatted way. Mainly used in discussion/help pages.
Syntax
Basic
{{tag|name}}
All parameters
{{tag|name|type|content=text|params=parameters}}
Parameters
- 1
- The XML/HTML tag's name (e.g.
code
,ref
, etc). - 2
- To indicate which tag type to use:
- p (pair) (default)
- A matching pair of open/start and close/end tags (e.g.
<div>...</div>
).
To suppress the ellipsis ("...") between the tags, add an empty|content=
parameter.
- A matching pair of open/start and close/end tags (e.g.
- o (open)
- An open/start tag (e.g.
<span>
).
- An open/start tag (e.g.
- c (close)
- A close/end tag (e.g.
</span>
).
- A close/end tag (e.g.
- s (single)
- A single tag (e.g.
<hr />
).
- A single tag (e.g.
- p (pair) (default)
- content
- Text to place between open/start and close/end tags.
- params
- Parameters to be included as part of an open/start tag.
Examples
{{tag|ref}} | <ref>...</ref>
|
{{tag|ref|content=}} | <ref></ref>
|
{{tag|ref|content=hello}} | <ref>hello</ref>
|
{{tag|font|content=foo}} | <font>foo</font>
|
{{tag|font|open}} | <font>
|
{{tag|font|open|content=hello}} | <font>hello
|
{{tag|span|close|content=hello}} | hello</span>
|
{{tag|span|pair|content=hello}} | <span>hello</span>
|
{{tag|ref|open|params=group="note"}} | <ref group="note">
|
{{tag|references|single}} | <references />
|
{{tag|br|single}} | <br />
|
{{tag|!--|content=comment}} | <!--comment-->
|