Difference between revisions of "Template:Markup/doc"

From blackwiki
Jump to navigation Jump to search
imported>SporkBot
m (Replace template per TFD outcome; no change in content)
imported>Sardanaphalus
(→‎Parameters: removed older names, added outputstyle)
Line 12: Line 12:
 
  |row1style=font-size:110%;font-weight:bold;| | Use / description | Default
 
  |row1style=font-size:110%;font-weight:bold;| | Use / description | Default
  
  | margin-left (margin) | To set a margin on the table's lefthand side | [not set]
+
  | margin-left | To set a margin on the table's lefthand side | [not set]
  | noheaders (notitle) | Set (as e.g. {{mono|100%|noheaders=on}}) to suppress the columns' headings and table's title | [not set]
+
  | noheaders   | Set (as e.g. {{mono|100%|noheaders=on}}) to suppress the columns' headings and table's title | [not set]
  | title     | Title above table | none
+
  | title       | Title above table       | none
  | col1 (t1) | First column's heading | "Markup"
+
  | col1       | First column's heading | "Markup"
  | col2 (t2) | Second column's heading | "Renders as"
+
  | col2       | Second column's heading | "Renders as"
  | codestyle | For CSS styles amending the presentation of markup/code in the first column (e.g. a smaller font-size) | [not set]
+
  | codestyle   | For CSS styles amending the presentation of markup/code in the first column (e.g. a smaller font-size) | [not set]
 +
| outputstyle | Ditto output in second column | [not set]
  
  |row8style=font-size:110%;padding-top:0.75em;font-weight:bold;| | Content for |  
+
  |row9style=font-size:110%;padding-top:0.75em;font-weight:bold;| | Content for |  
 
  | {{{1}}}  | row 1, first column (markup/code) |  
 
  | {{{1}}}  | row 1, first column (markup/code) |  
 
  | {{{2}}}  | row 1, second column (output) |  
 
  | {{{2}}}  | row 1, second column (output) |  

Revision as of 16:47, 7 December 2014

This template is used to present markup or code side by side with the rendered output.

Parameters

Script error: No such module "aligned table".

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:
  • 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.

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 Expected rendering
{{[[Template:tag|tag]]}}

{{tl|tag}}

HTML entities

HTML entities are parsed in the markup cell:

Nowikied markup shows as Expected markup
 –

&nbsp;&ndash;

To work around this, replace the & with &amp; thus &amp;nbsp; will show as &nbsp;

List and indent markup

If the first line includes wikimarkup that must start on a new line such as #, * or ; then use <nowiki />:

Without <nowiki />
Markup Renders as
# Item 1
# Item 2
# Item 3
# Item 4
  1. Item 1
  2. Item 2
  3. Item 3
  4. Item 4
With <nowiki />
Markup Renders as
<nowiki />
# Item 1
# Item 2
# Item 3
# Item 4

  1. Item 1
  2. Item 2
  3. Item 3
  4. Item 4

Examples

Simple

Markup 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 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]

Notes
  1. A footnote.[1]
References
  1. A reference for the footnote.

Multiple rows

Markup 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

Foxes and dogs
Markup 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 Renders as
{{cite book |last=White |first=T. H. |title=The Book of Merlyn |year=1977}}

White, T. H. (1977). The Book of Merlyn.

{{code|{{cite book |last=White |first=T. H. |title=The Book of Merlyn |year=1977}}}}

<cite id="CITEREFWhite1977" class="citation book cs1">White, T. H. (1977). ''The Book of Merlyn''.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=The+Book+of+Merlyn&rft.date=1977&rft.aulast=White&rft.aufirst=T.+H.&rfr_id=info%3Asid%2Fblackwiki.org%3ATemplate%3AMarkup%2Fdoc" class="Z3988"></span>'"`UNIQ--templatestyles-0000002B-QINU`"'

See also

  • {{markup}}: side by side markup
  • {{markup2}}: bulleted and indented markup
  • {{markupv}}: above and below markup