Template:Markup
This template is used to present markup or code side by side with the output it renders.
Usage
Each cell in the first ("Markup") column uses <pre>
to retain newlines and spaces but styled to allow content to wrap within it. It is usually desirable to escape the content of these cells so that the markup is displayed by wrapping the markup in <nowiki>
. It is technically not possible to add this feature to the template.
Each cell in the second ("Renders as") column is usually the unescaped markup copied from the corresponding "Markup" cell before it. There are instances where this may differ:
- If the first line includes wikimarkup that must start on a new line such as #, * or ; then use
<nowiki />
before the first line; see examples below. - Header markup such as
==
will show in the page table of contents; use{{fake heading}}
. - Some templates will place the page in a maintenance category, which is usually undesired:
- Instead of
{{citation needed}}
, use{{fake citation needed}}
.
- Instead of
- Some templates may have error checking that places the page in a maintenance category. Suppress the category as possible:
- Citation Style 1 templates can suppress the maintenance category by setting
|template doc demo=true
.
- Citation Style 1 templates can suppress the maintenance category by setting
Limitations
<nowiki>
If you don't wrap the content of the markup cell in <nowiki>
, then any template markup will not be escaped, it will be expanded.
This example shows the markup for {{tl|tag}}:
Renders as =scope="col" style="width:50%;"| Expected rendering | |
---|---|
{{[[Template:tag|tag]]}} |
{{tl|tag}} |
HTML entities
HTML entities are parsed in the markup cell:
Nowikied markup shows as =scope="col" style="width:50%;"| Expected markup | |
---|---|
– |
– |
To work around this, replace the &
with &
thus &nbsp;
will show as
List and indent markup
If the first line includes wikimarkup that must start on a new line such as #, * or ; then use <nowiki />
:
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
# Item 1 # Item 2 # Item 3 # Item 4 |
|
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
<nowiki /> # Item 1 # Item 2 # Item 3 # Item 4 |
|
Examples
Simple
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
'''Bold text''' |
Bold text |
''Italic text'' |
Italic text |
More complex
Note that {{Markup}}
's second argument here uses {{fake heading}}
and {{fake citation needed}}
.
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
The quick brown fox jumps over the lazy dog.{{#tag:ref|A footnote.<ref>A reference for the footnote.</ref>|group=nb}} The cow jumped over the moon.{{fact}} == Notes == {{reflist|group=nb}} == References == {{reflist}} |
The quick brown fox jumps over the lazy dog.[nb 1] The cow jumped over the moon.[citation needed]
|
Multiple rows
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
With title
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
Showing rendered HTML
When a template is enclosed within {{code}}, it shows the rendered HTML:
Markup =scope="col" style="width:50%;"| Renders as | |
---|---|
{{cite book |last=White |first=T. H. |title=The Book of Merlyn |year=1977}} |
Page Module:Citation/CS1/styles.css has no content.White, T. H. (1977). The Book of Merlyn. |
{{code|lang=html|{{cite book |last=White |first=T. H. |title=The Book of Merlyn |year=1977}}}} |
|
See also
- {{Markup2}} for bulleted and indented markup.
- {{Markupv}} for the vertical presentation (above/below) of markup/code and its output.
- {{Automarkup}} does not require to write the code samples twice.
The above documentation is transcluded from Template:Markup/doc. (edit | history) Editors can experiment in this template's sandbox (create | mirror) and testcases (create) pages. Please add categories to the /doc subpage. Subpages of this template. |