Misplaced Pages

Help:Wikitext: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editContent deleted Content addedVisualWikitext
Revision as of 12:39, 24 August 2021 view sourceAntoine Legrand (talk | contribs)Extended confirmed users689 edits Tables: {{See also}}← Previous edit Latest revision as of 16:11, 27 November 2024 view source Daask (talk | contribs)Autopatrolled, Extended confirmed users, New page reviewers, Pending changes reviewers31,559 edits Update to reflect that unnamed links should not be used in articles except in certain lists
(130 intermediate revisions by 47 users not shown)
Line 1: Line 1:
{{short description|Misplaced Pages help page}} {{short description|Misplaced Pages help page}}
{{pp-move-indef|small=yes}}
{{pp-vandalism|small=yes}} {{pp-vandalism|small=yes}}
{{for|the encyclopedic article on Wikitext|Wikitext}} {{for|the encyclopedic section on wikitext|Wiki#Editing}}
{{redirect|H:WT|the welcoming templates|Misplaced Pages:Welcoming committee/Welcome templates}}
{{Locutions pages header}} {{Locutions pages header}}
{{Misplaced Pages how to|H:WT|H:MARKUP|H:WIKICODE}} {{Misplaced Pages how to|H:WT|H:MARKUP|H:WIKICODE}}
{{Wikitext navbox}} {{Wikitext navbox}}
'''Wikitext''', also known as '''Wiki markup''' or '''Wikicode''', consists of the syntax and keywords used by the ] software to format a page. To learn how to see this ], and to save an edit, see ]. Generally, coding can be copied and pasted, without writing new code. There is a short list of markup and tips at ]. The markup language called '''wikitext''', also known as '''wiki markup''' or '''wikicode''', consists of the syntax and keywords used by the ] software to format a page. (Note the lowercase spelling of these terms.{{efn|Misplaced Pages is an encyclopedia that uses wikitext—wikitext is not named after Misplaced Pages.}}) To learn how to see this ], and to save an edit, see ]. Generally, coding can be copied and pasted, without writing new code. There is a short list of markup and tips at ].


In addition to Wikitext, some ]s are also allowed for presentation formatting. See ] for information on this. In addition to wikitext, some ]s are also allowed for presentation formatting. See ] for information on this.
{{TOC limit}} {{TOC limit}}


Line 14: Line 16:


===Sections=== ===Sections===
Article sections in a page will follow that page's ] or introduction and, if there are four or more, the ].

Sections in a page will follow the page's ], and under certain conditions, the ].


====Section headings==== ====Section headings====
Line 41: Line 42:
}} }}


HTML equivalent: {{tag|hr|s}} (which can be indented, whereas <nowiki>----</nowiki> always starts at the left margin.) HTML equivalent: {{tag|hr|s}} (which can be indented, whereas <code>----</code> always starts at the left margin.)


====Table of contents==== ====Table of contents====
Line 47: Line 48:


When a page has at least four headings, a table of contents (TOC) will automatically appear after the lead and before the first heading. The TOC can be controlled by magic words or templates: When a page has at least four headings, a table of contents (TOC) will automatically appear after the lead and before the first heading. The TOC can be controlled by magic words or templates:
* <code><nowiki>__FORCETOC__</nowiki></code> forces the TOC to appear at the normal location regardless of the number of headings. * <syntaxhighlight lang="wikitext" inline>__FORCETOC__</syntaxhighlight> forces the TOC to appear at the normal location regardless of the number of headings.
* <code><nowiki>__TOC__</nowiki></code> forces the TOC to appear at the point where the magic word is inserted instead of the normal location. * <syntaxhighlight lang="wikitext" inline>__TOC__</syntaxhighlight> forces the TOC to appear at the point where the magic word is inserted instead of the normal location.
* <code><nowiki>__NOTOC__</nowiki></code> disables the TOC entirely. * <syntaxhighlight lang="wikitext" inline>__NOTOC__</syntaxhighlight> disables the TOC entirely.
* {{tl|TOC limit}} template can be used to control the depth of subsections included in the TOC. This is useful where the TOC is long and unwieldy. * {{tl|TOC limit}} template can be used to control the depth of subsections included in the TOC. This is useful where the TOC is long and unwieldy.
* ] contains a number of specialized TOC templates. * ] contains a number of specialized TOC templates.
Line 55: Line 56:
===Line breaks=== ===Line breaks===
<!--] links directly here.--> <!--] links directly here.-->
{{see|Help:Line-break handling|Misplaced Pages:Line breaks usage}} {{see|Help:Line-break handling|Misplaced Pages:Line breaks usage|Misplaced Pages:Manual of Style/Accessibility#Indentation}}


Line breaks or newlines are used to add whitespace between lines, such as separating paragraphs. Line breaks or newlines are used to add whitespace between lines, such as separating paragraphs.
Line 61: Line 62:
* Pressing {{key press|Enter}} once will place a line break in the markup, but it will not show in the rendered content, except when using list markup. * Pressing {{key press|Enter}} once will place a line break in the markup, but it will not show in the rendered content, except when using list markup.
* Markup such as bold or italics will be terminated at a line break. * Markup such as bold or italics will be terminated at a line break.
* Blank lines within indented wikitext should not be added due to accessibility issues.


{{markup {{markup
Line 80: Line 82:


Templates for line breaks: Templates for line breaks:
* {{tl|break}} adds multiple line breaks. * {{tl|break}} can add multiple line breaks.
* {{tl|-}} and {{tl|clear}} adds a break with styling, to clear floating elements. (often used to prevent text from flowing next to unrelated tables or images) * {{tl|-}} and {{tl|clear}} adds a break with styling, to clear floating elements. Often used to prevent text from flowing next to unrelated tables or images.


Unbulleted list: Unbulleted list:
Line 87: Line 89:


===Indent text=== ===Indent text===
{{see|WP:INDENT}} {{see|WP:INDENT|Misplaced Pages:Manual of Style/Accessibility#Indentation}}


Indentation is most commonly used on talk pages. Indentation is most commonly used on talk pages.


{{markup {{markup
|<nowiki>Indentation as used on talk pages: | <syntaxhighlight lang="wikitext">Indentation as used on talk pages:
:Each colon at the start of a line :Each colon at the start of a line
::causes the line to be indented by three more character positions. ::causes the line to be indented by three more character positions.
Line 101: Line 103:
:::::And so forth ... :::::And so forth ...
::::::And so on ... ::::::And so on ...
{{Outdent|::::::}}The outdent template can give a visual indicator that we're deliberately cancelling the indent (6 levels here)</nowiki> {{Outdent|::::::}}The outdent template can give a visual indicator that we're deliberately cancelling the indent (6 levels here)</syntaxhighlight>
|Indentation as used on talk pages: |Indentation as used on talk pages:
:Each colon at the start of a line :Each colon at the start of a line
Line 119: Line 121:
When there is a need for separating a block of text. This is useful for (as the name says) inserting blocks of quoted (and cited) text. When there is a need for separating a block of text. This is useful for (as the name says) inserting blocks of quoted (and cited) text.
{{markup {{markup
| <syntaxhighlight lang="wikitext">Normal text
|<nowiki><blockquote>
<blockquote>
The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does. The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does.
</blockquote> </blockquote>
Normal text
</nowiki>
</syntaxhighlight>
|<blockquote>
|Normal text
<blockquote>
The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does. The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does.
</blockquote> </blockquote>
Normal text
}} }}
This uses an HTML tag; template {{tl|quote}} results in the same render. This uses an HTML tag; template {{tl|quote}} results in the same render.
Line 167: Line 173:


{{markup {{markup
|<nowiki>* Item1 | <syntaxhighlight lang="wikitext">* Item1
* Item2 * Item2
* Item3 * Item3
Line 176: Line 182:
**** Sub-item 4 a) 1. ii) **** Sub-item 4 a) 1. ii)
** Sub-item 4 b) ** Sub-item 4 b)
* Item5</nowiki> * Item5</syntaxhighlight>
|{{crlf2}} |{{crlf2}}
* Item1 * Item1
Line 194: Line 200:


{{markup {{markup
| <syntaxhighlight lang="wikitext">
|<nowiki>
# Item1 # Item1
# Item2 # Item2
Line 204: Line 210:
## Sub-item 2 ## Sub-item 2
# Item5 # Item5
</syntaxhighlight>
</nowiki>
|{{crlf2}} |{{crlf2}}
# Item1 # Item1
Line 228: Line 234:


{{markup {{markup
|<nowiki>; Term : Definition1</nowiki> | <syntaxhighlight lang="wikitext">; Term : Definition1</syntaxhighlight>
|{{crlf2}} |{{crlf2}}
; Term : Definition1 ; Term : Definition1
|<nowiki>; Term | <syntaxhighlight lang="wikitext">; Term
: Definition1 : Definition1
: Definition2 : Definition2
: Definition3 : Definition3
: Definition4</nowiki> : Definition4</syntaxhighlight>
|{{crlf2}} |{{crlf2}}
; Term ; Term
Line 251: Line 257:
{{shortcut|H:POEM}} {{shortcut|H:POEM}}


The MediaWiki software suppresses single newlines and converts lines starting with a space to preformatted text in a dashed box. HTML suppresses multiple spaces. It is often desirable to retain these elements for poems, lyrics, mottoes, oaths and the like. The ] extension adds HTML-like {{tag|poem}} tags to maintain newlines and spaces. These tags may be used inside other tags such as {{tag|blockquote}}; the template {{tlx|poemquote}} provides a convenient shorthand. ] may be applied to this tag, e.g.: <code><nowiki><poem style="margin-left: 2em;"></nowiki></code>. The MediaWiki software suppresses single newlines and converts lines starting with a space to preformatted text in a dashed box. HTML suppresses multiple spaces. It is often desirable to retain these elements for poems, lyrics, mottoes, oaths and the like. The ] extension adds HTML-like {{tag|poem}} tags to maintain newlines and spaces. These tags may be used inside other tags such as {{tag|blockquote}}; the template {{tlx|poemquote}} provides a convenient shorthand. ] may be applied to this tag, e.g.: <syntaxhighlight lang="wikitext" inline><poem style="margin-left: 2em;"></syntaxhighlight>.


{{markup {{markup
|<nowiki><poem> |<syntaxhighlight lang="xml"><poem>
In Xanadu did Kubla Khan In Xanadu did Kubla Khan
A stately pleasure-dome decree: A stately pleasure-dome decree:
Line 267: Line 273:
And here were forests ancient as the hills, And here were forests ancient as the hills,
Enfolding sunny spots of greenery. Enfolding sunny spots of greenery.
</poem></nowiki> </poem></syntaxhighlight>
|<poem> |<poem>
In Xanadu did Kubla Khan In Xanadu did Kubla Khan
Line 287: Line 293:


'''Markup''' '''Markup'''
<syntaxhighlight lang="xml"><poem lang="fr" style="float:left;">Frère Jacques, frère Jacques, <syntaxhighlight lang="wikitext"><poem lang="fr" style="float:left;">Frère Jacques, frère Jacques,
Dormez-vous? Dormez-vous? Dormez-vous? Dormez-vous?
Sonnez les matines! Sonnez les matines! Sonnez les matines! Sonnez les matines!
Line 320: Line 326:
''italics'', '''bold''', {{smallcaps|small capital letters}} ''italics'', '''bold''', {{smallcaps|small capital letters}}
| |
<syntaxhighlight lang="wikitext">
<pre>
To ''italicize text'', put two consecutive apostrophes on each side of it. To ''italicize text'', put two consecutive apostrophes on each side of it.


Line 330: Line 336:


For text as {{smallcaps|small caps}}, use the template {{tl|smallcaps}}. For text as {{smallcaps|small caps}}, use the template {{tl|smallcaps}}.
</syntaxhighlight>
</pre>
| |
To ''italicize text'', put two consecutive apostrophes on each side of it. To ''italicize text'', put two consecutive apostrophes on each side of it.
Line 349: Line 355:
Small chunks of ] within a line of normal text. Small chunks of ] within a line of normal text.


Code is displayed in a ] font. Code is displayed in a ].
| |
<pre><nowiki>function <code>int m2()</code> is nice.</nowiki></pre> <syntaxhighlight lang="wikitext">function <code>int m2()</code> is nice.</syntaxhighlight>
| |
function <code>int m2()</code> is nice. function <code>int m2()</code> is nice.
Line 360: Line 366:
] for source code. ] for source code.


Computer code has colored text and more stringent formatting. For example, to define a function: <code>int m2()</code>, with highlights. Computer code has colored text and more stringent formatting. For example, to define a function: <code>int m2()</code>, with highlights, in C++.


See for a full list of supported languages that can be put in <code>lang="????"</code> See for a full list of supported languages that can be put in <code>lang="????"</code>
Line 383: Line 389:
<small>Small text</small> <small>Small text</small>
| |
<syntaxhighlight lang="html"> <syntaxhighlight lang="wikitext">
Use <small>small text</small> only Use <small>small text</small> only
when necessary. when necessary.
Line 395: Line 401:
<small style="font-size:87%;">a <nowiki><small></nowiki> span</small> <small style="font-size:87%;">a <nowiki><small></nowiki> span</small>
| |
<syntaxhighlight lang="html"> <syntaxhighlight lang="wikitext">
To match, for example, the font-size used in an ], the "small" tag can also be used to To match, for example, the font-size used in an ], the "small" tag can also be used to
<small style="font-size:87%;">reduce a text's font-size to 87%</small>. <small style="font-size:87%;">reduce a text's font-size to 87%</small>.
Line 407: Line 413:
<big>Big text</big> <big>Big text</big>
| |
<syntaxhighlight lang="html"> <syntaxhighlight lang="wikitext">
Better not use <big>big text</big>, unless <small>it's <big>within</big> small</small> text. Better not use <big>big text</big>, unless <small>it's <big>within</big> small</small> text.
</syntaxhighlight> </syntaxhighlight>
Line 418: Line 424:
To prevent two words from becoming separated by a ] (e.g. ''Mr.&nbsp;Smith'' or ''400&nbsp;km/h'') a ''']''', sometimes also called a "non-printing character", may be used between them. (For three or more words, the template {{tl|nowrap}} is probably more suitable.) To prevent two words from becoming separated by a ] (e.g. ''Mr.&nbsp;Smith'' or ''400&nbsp;km/h'') a ''']''', sometimes also called a "non-printing character", may be used between them. (For three or more words, the template {{tl|nowrap}} is probably more suitable.)
| |
<pre>Mr.&amp;nbsp;Smith or 400&amp;nbsp;km/h</pre> <syntaxhighlight lang="html">Mr.&amp;nbsp;Smith or 400&amp;nbsp;km/h</syntaxhighlight>
| |
Mr.&nbsp;Smith or 400&nbsp;km/h Mr.&nbsp;Smith or 400&nbsp;km/h
Line 427: Line 433:
'''Extra spacing''' within text is usually best achieved using the {{tl|pad}} template. '''Extra spacing''' within text is usually best achieved using the {{tl|pad}} template.
| |
<pre><nowiki>Mary {{pad|4.0em}} had a little lamb.</nowiki></pre> <syntaxhighlight lang="wikitext">Mary {{pad|4.0em}} had a little lamb.</syntaxhighlight>
| |
Mary {{pad|4.0em}} had a little lamb. Mary {{pad|4.0em}} had a little lamb.
Line 438: Line 444:
(Also works beyond the end of a paragraph.) (Also works beyond the end of a paragraph.)
| |
<pre><nowiki><kbd>right arrow →</kbd> <syntaxhighlight lang="wikitext"><kbd>right arrow →</kbd>


<kbd>''italics'', '''bold'''</kbd> <kbd>''italics'', '''bold'''</kbd>
Line 444: Line 450:
<kbd>] <kbd>]


New paragraph </kbd>started here.</nowiki></pre> New paragraph </kbd>started here.</syntaxhighlight>
| |
<pre><kbd>right arrow →</kbd> <pre><kbd>right arrow →</kbd>
Line 582: Line 588:
{{main|Help:WikiHiero syntax}} {{main|Help:WikiHiero syntax}}


WikiHiero is a software extension that renders ] as PNG images using {{xtag|hiero}} tags. WikiHiero is a software extension that renders ] as PNG images using {{xtag|hiero}} HTML-like tags.


Example: Example:
Line 589: Line 595:
|<hiero>P2</hiero> |<hiero>P2</hiero>
}} }}

====Chess symbols====
{{main|Chess symbols in Unicode}}

For example, &amp;#9812; displays &#9812;


====Subscripts and superscripts==== ====Subscripts and superscripts====
Line 645: Line 646:
''Combined'' ''Combined''
| |
<syntaxhighlight lang="tid"> <syntaxhighlight lang="wikitext">
&epsilon;<sub>0</sub> = 8.85 &times; 10<sup>&minus;12</sup> C&sup2; / J m &epsilon;<sub>0</sub> = 8.85 &times; 10<sup>&minus;12</sup> C&sup2; / J m


Line 707: Line 708:
* The {{tag|math|o}} tag typesets using ],{{efn|The version of LaTeX used is a subset of AMS-LaTeX markup; see ] for details.}} which may render as an image or as HTML, depending on environmental settings. The {{tag|math|o}} tag is best for the complex formula on its own line in an image format. If you use this tag to put a formula in the line with text, put it in the {{tl|nowrap}} template. * The {{tag|math|o}} tag typesets using ],{{efn|The version of LaTeX used is a subset of AMS-LaTeX markup; see ] for details.}} which may render as an image or as HTML, depending on environmental settings. The {{tag|math|o}} tag is best for the complex formula on its own line in an image format. If you use this tag to put a formula in the line with text, put it in the {{tl|nowrap}} template.


* The {{tl|math}} template ], and will size-match a serif font, and will also prevent line-wrap. All templates are sensitive to the <code>=</code> sign, so remember to replace <code>=</code> with <code>{{tl|{{=}}}}</code> in template input, or start the input with <code>1=</code>. Use wiki markup <code><nowiki>''</nowiki></code> and <code><nowiki>'''</nowiki></code> inside the {{tl|math}} template, as well as other ]. The {{tl|math}} template is best for typeset formulas in line with the text. * The {{tl|math}} template ], and will size-match a serif font, and will also prevent line-wrap. All templates are sensitive to the <code>=</code> sign, so remember to replace <code>=</code> with <code>{{tl|{{=}}}}</code> in template input, or start the input with <code>1=</code>. Use wiki markup <syntaxhighlight lang="wikitext" inline>''</syntaxhighlight> and <syntaxhighlight lang="wikitext" inline>'''</syntaxhighlight> inside the {{tl|math}} template, as well as other ]. The {{tl|math}} template is best for typeset formulas in line with the text.


{{markup {{markup
Line 714: Line 715:
</syntaxhighlight> </syntaxhighlight>


<syntaxhighlight lang="html" inline> <syntaxhighlight lang="wikitext" inline>
{{math|2''x'' &times; 4''y'' &divide; 6''z'' + 8 &minus; {{sfrac|''y''|''z''<sup>2</sup>}} {{=}} 0}} {{math|2''x'' &times; 4''y'' &divide; 6''z'' + 8 &minus; {{sfrac|''y''|''z''<sup>2</sup>}} {{=}} 0}}
</syntaxhighlight> </syntaxhighlight>
Line 721: Line 722:
<math>\sin 2\pi x + \ln e</math> <math>\sin 2\pi x + \ln e</math>
</syntaxhighlight> </syntaxhighlight>
<syntaxhighlight lang="wikitext" inline>
<nowiki>
{{math|sin 2&amp;pi;''x'' + ln ''e''}} {{math|sin 2&amp;pi;''x'' + ln ''e''}}
</syntaxhighlight>
</nowiki>
|<math>2x \times 4y \div 6z + 8 - \frac {y}{z^2} = 0</math> |<math>2x \times 4y \div 6z + 8 - \frac {y}{z^2} = 0</math>
{{crlf|}} {{crlf|}}
Line 749: Line 750:


* See ] for how to use {{tag|math|o}}. * See ] for how to use {{tag|math|o}}.
* A formula displayed on a line by itself should probably be indented by using the colon (:) character. * A formula displayed on a line by itself should be indented using {{tag|math|params=display=block}}


{{markup {{markup
|<syntaxhighlight lang="latex" inline> |<syntaxhighlight lang="latex" inline>
: <math>\sum_{n=0}^\infty \frac{x^n}{n!}</math> <math display=block>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
</syntaxhighlight> </syntaxhighlight>
|2={{crlf2}} |2={{crlf2}}
: <math>\sum_{n=0}^\infty \frac{x^n}{n!}</math> <math display=block>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
}} }}
Indenting by using the colon (:) character (i.e. using <syntaxhighlight lang="wikitext" inline>:<math></math></syntaxhighlight> instead of <syntaxhighlight lang="wikitext" inline><math display=block></math></syntaxhighlight>) is discouraged for ].


==Links and URLs== ==Links and URLs==
{{main|Help:Link}} {{main|Help:Link}}


===Free links=== ===Wikilinks<span class="anchor" id="Free links"></span>===


'''Wikilinks''' are used in wikitext markup to produce ]s between pages. You create wikilinks by putting double square brackets around text designating the title of the page you want to link to. Thus, <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight> will be rendered as ]. Optionally, you can use a ] (|) to customize the link title. For example, typing <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight> will produce ], a link that is displayed as "<u>Lone Star State</u>" but in fact links to ].
In ] and some other ]s, '''free links''' are used in ] markup to produce ]s between pages, as opposed to the concept of ] for the same purpose, which was used in the early days of Misplaced Pages – see ].

In ], you create free links by putting double square brackets around text designating the title of the page you want to link to. Thus, <code><nowiki>]</nowiki></code> will be rendered as ]. Optionally, you can use a ] (|) to customize the link title. For example, typing <code><nowiki>]</nowiki></code> will produce ], a link that is displayed as "<u>Lone Star State</u>" but in fact links to ].


====Link to another wiki article==== ====Link to another wiki article====
Line 776: Line 776:


{{markup {{markup
|<nowiki>London has ].</nowiki> | <syntaxhighlight lang="wikitext">London has ].</syntaxhighlight>
|London has ]. |London has ].
| <syntaxhighlight lang="wikitext">Link to this page: "]" will appear only as bold text.</syntaxhighlight>

|<nowiki>Link to this page: "]" will appear only as bold text.</nowiki>
|Link to this page: "]" will appear only as bold text. |Link to this page: "]" will appear only as bold text.

}} }}


Line 794: Line 792:
|- |-
| |
<code><nowiki>New York also has ].</nowiki></code> <syntaxhighlight lang="wikitext" inline>New York also has ].</syntaxhighlight>
| |
New York also has ]. New York also has ].
Line 812: Line 810:
''Automatically hide stuff in parentheses'' ''Automatically hide stuff in parentheses''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
|- |-
| ''Automatically hide the comma and following text'' | ''Automatically hide the comma and following text''
| <code><nowiki>]</nowiki></code> | <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| ] | ]
|- |-
Line 823: Line 821:
''Automatically hide namespace'' ''Automatically hide namespace''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 830: Line 828:
''Or both'' ''Or both''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 837: Line 835:
''<b>But this doesn't work for section links</b>'' ''<b>But this doesn't work for section links</b>''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 856: Line 854:
| rowspan=2 | ''Blending active'' | rowspan=2 | ''Blending active''
| |
<code><nowiki>San Francisco also has ]ation. Examples include ]es, ]s, and ]s.</nowiki></code> <syntaxhighlight lang="wikitext" inline>San Francisco also has ]ation. Examples include ]es, ]s, and ]s.</syntaxhighlight>
| San Francisco also has ]ation. Examples include ]es, ]s, and ]s. | San Francisco also has ]ation. Examples include ]es, ]s, and ]s.
|- |-
| <code><nowiki>A ]second</nowiki></code> | <syntaxhighlight lang="wikitext" inline>A ]second</syntaxhighlight>
| A ]second | A ]second
|- |-
Line 865: Line 863:
''Blending suppressed'' ''Blending suppressed''
| |
<code><nowiki>A ]<nowiki />second.</nowiki></code> <syntaxhighlight lang="wikitext" inline>A ]<nowiki />second.</syntaxhighlight>
| |
A ]<nowiki />second A ]<nowiki />second
Line 881: Line 879:
|- |-
| |
<code><nowiki>] is a link to a section within another page.</nowiki></code> <syntaxhighlight lang="wikitext" inline>] is a link to a section within another page.</syntaxhighlight>
| |
] is a link to a section within another page. ] is a link to a section within another page.
|- |-
| |
<code><nowiki>] is a link to another section on the current page. ] is a link to the same section without showing the # symbol.</nowiki></code> <syntaxhighlight lang="wikitext" inline>] is a link to another section on the current page. ] is a link to the same section without showing the # symbol.</syntaxhighlight>
| |
] is a link to another section on the current page. ] is a link to the same section without showing the # symbol. ] is a link to another section on the current page. ] is a link to the same section without showing the # symbol.
|- |-
| |
<code><nowiki>] is a piped link to a section within another page.</nowiki></code> <syntaxhighlight lang="wikitext" inline>] is a piped link to a section within another page.</syntaxhighlight>
| |
] is a piped link to a section within another page. ] is a piped link to a section within another page.
Line 911: Line 909:
|- |-
| |
''Links to pages that don’t exist yet look red.'' ''Links to pages that don't exist yet look red.''
| |
<code><nowiki>The article about ] doesn't exist yet.</nowiki></code> <syntaxhighlight lang="wikitext" inline>The article about ] doesn't exist yet.</syntaxhighlight>
| |
The article about ] doesn't exist yet. The article about ] doesn't exist yet.
Line 931: Line 929:
''Redirect to an article'' ''Redirect to an article''
| |
<code><nowiki>#REDIRECT ] </nowiki></code> <syntaxhighlight lang="wikitext" inline>#REDIRECT ] </syntaxhighlight>
|- |-
| |
''Redirect to a section'' ''Redirect to a section''
| |
<code><nowiki>#REDIRECT ]</nowiki></code> <syntaxhighlight lang="wikitext" inline>#REDIRECT ]</syntaxhighlight>
|} |}


Line 948: Line 946:
|- |-
| |
<code><nowiki>See the ].</nowiki></code> <syntaxhighlight lang="wikitext" inline>See the ].</syntaxhighlight>
| |
See the ]. See the ].
Line 957: Line 955:
{{notice|After the launch of ], interlanguage links are now added through it. Links in articles should exist only in special cases, for example when an article in one language has two articles in another language.}} {{notice|After the launch of ], interlanguage links are now added through it. Links in articles should exist only in special cases, for example when an article in one language has two articles in another language.}}


* To link to a corresponding page in another language, use the form: <code><nowiki>]</nowiki></code>. * To link to a corresponding page in another language, use the form: <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>.
* It is recommended interlanguage links be placed at the very end of the article. * It is recommended interlanguage links be placed at the very end of the article.
* Interlanguage links are not visible within the formatted article, but instead appear as language links on the sidebar (to the left) under the menu section "languages". * Interlanguage links are '''NOT visible''' within the formatted article, but instead appear as language links on the sidebar (to the left) under the menu section "languages".


* '''NOTE:''' To create an '''''inline link''''' (a clickable link within the text) to ''any'' foreign language article, see ] and consider the usage notes. * '''NOTE:''' To create an '''''inline link''''' (a clickable link within the text) to ''any'' foreign language article, see ] and consider the usage notes.
Line 972: Line 970:
''"es" is the language code for "{{lang|es|español}}" (the ]).'' ''"es" is the language code for "{{lang|es|español}}" (the ]).''
| |
<syntaxhighlight lang="wikitext">
<pre>
] ]
</syntaxhighlight>
</pre>


|- |-
Line 980: Line 978:
''Other examples: French (<code>fr</code> for {{lang|fr|français}}), German (<code>de</code> for {{lang|de|Deutsch}}), Russian (<code>ru</code>), and simple English (<code>simple</code>).'' ''Other examples: French (<code>fr</code> for {{lang|fr|français}}), German (<code>de</code> for {{lang|de|Deutsch}}), Russian (<code>ru</code>), and simple English (<code>simple</code>).''
| |
<syntaxhighlight lang="wikitext">
<pre>
] ]
] ]
] ]
] ]
</syntaxhighlight>
</pre>


|} |}
Line 991: Line 989:
===Interwiki link=== ===Interwiki link===


* ] link to any page on other wikis. ] link to other Wikimedia wikis. * ] link to any page on other wikis. ] link to other Wikimedia wikis.
* Note that interwikimedia links use the internal link style, with double square brackets. * Note that interwikimedia links use the internal link style, with double square brackets.
* See ] for the list of shortcuts; if the site you want to link to is not on the list, use an ]. * See ] for the list of shortcuts; if the site you want to link to is not on the list, use an ].
* See also ]. * See also ].


{| class="wikitable" {| class="wikitable"
Line 1,004: Line 1,002:
Linking to a page on another wiki in English. Linking to a page on another wiki in English.


All of these forms lead to the URL <em>http://en.wiktionary.org/hello</em>. All of these forms lead to the URL <em>https://en.wiktionary.org/hello</em>.
|- |-
| |
Line 1,013: Line 1,011:
''Named link.'' ''Named link.''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>


<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>


<code><nowiki>] </nowiki></code> <syntaxhighlight lang="wikitext" inline>] </syntaxhighlight>
| |
] ]
Line 1,028: Line 1,026:
Linking to a page on another wiki in another language. Linking to a page on another wiki in another language.


All of these forms lead to the URL <em>http://fr.wiktionary.org/bonjour</em>. All of these forms lead to the URL <em>https://fr.wiktionary.org/bonjour</em>.
|- |-
| |
Line 1,037: Line 1,035:
''Named link.'' ''Named link.''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>


<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>


<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,052: Line 1,050:
===Categories=== ===Categories===


* To put an article in a ], place a link like <code><nowiki>]</nowiki></code> into the article. As with interlanguage links, placing these links at ] is recommended. * To put an article in a ], place a link like <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight> into the article. As with interlanguage links, placing these links at ] is recommended.
* To link to a category page without putting the article into the category, use a colon prefix (":Category") in the link. * To link to a category page without putting the article into the category, use a colon prefix (":Category") in the link.


Line 1,063: Line 1,061:
''Categorize an article.'' ''Categorize an article.''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
|- |-
Line 1,069: Line 1,067:
''Link to a category.'' ''Link to a category.''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,076: Line 1,074:
''Without prefix.'' ''Without prefix.''
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,084: Line 1,082:
<!-- linked from ] --> <!-- linked from ] -->


*Single square brackets indicate an external link. Note the use of a ''space'' (not a pipe |) to separate the URL from the link text in a named link. Square brackets may be used as normal punctuation when not linking to anything – . *Single-square brackets indicate an external link. Note the use of a ''space'' (not a pipe |) to separate the URL from the link text in a named link. Square brackets may be used as normal punctuation when not linking to anything – .
*A ] must begin with a supported ]: <code>http://</code> and <code>https://</code> will be supported by all browsers; <code>irc://</code>, <code>ircs://</code>, <code>ftp://</code>, <syntaxhighlight lang="text" inline>news://</syntaxhighlight>, <code>mailto:</code>, and <code>gopher://</code> will require a plugin or an external application. IPv6 addresses in URLs are currently not supported. *A ] must begin with a supported ]: <code>https://</code> (preferably) and <code>http://</code> will be supported by all browsers; <code>irc://</code>, <code>ircs://</code>, <code>ftp://</code>, <syntaxhighlight lang="text" inline>news://</syntaxhighlight>, <code>mailto:</code>, and <code>gopher://</code> will require a plugin or an external application. IPv6 addresses in URLs are currently not supported.
*A URL containing certain characters will display and link incorrectly unless those characters are ]. For example, a space must be replaced by <code>%20</code>. Encoding can be achieved by: *A URL containing certain characters will display and link incorrectly unless those characters are ]. For example, a space must be replaced by <code>%20</code>. Encoding can be achieved by:
:*Use the link button ] on the enhanced editing toolbar to encode the link; this tool will add the bracket markup and the linked text, which may not always be desirable. :*Use the link button ] on the enhanced editing toolbar to encode the link; this tool will add the bracket markup and the linked text, which may not always be desirable.
Line 1,095: Line 1,093:
| %20 || %22 || %27 || %2c || %3b || %3c || %3e || %3f || %5b || %5d | %20 || %22 || %27 || %2c || %3b || %3c || %3e || %3f || %5b || %5d
|} |}
:*Or use the <code><nowiki>{{urlencode:}}</nowiki></code> magic word. See ] in the MediaWiki documentation for more details. :*Or use the <syntaxhighlight lang="wikitext" inline>{{urlencode:}}</syntaxhighlight> magic word. See ] in the MediaWiki documentation for more details.


* See ] for style issues, and ] for indicating the file type of an external link with an icon. * See ] for style issues, and ] for indicating the file type of an external link with an icon.
Line 1,107: Line 1,105:
''Named link'' with an ] ''Named link'' with an ]
| |
<code><nowiki></nowiki></code> <syntaxhighlight lang="wikitext" inline></syntaxhighlight>
| |
|- |-
| |
''Unnamed link'' ''Unnamed link''


This should ] except in ].
''(Used only within article body for footnotes)''
| |
<code><nowiki></nowiki></code> <syntaxhighlight lang="wikitext" inline></syntaxhighlight>
| |
|- |-
| |
Line 1,127: Line 1,125:
use <nowiki><nowiki></nowiki></nowiki> to keep this bad style from showing use <nowiki><nowiki></nowiki></nowiki> to keep this bad style from showing
| |
<code><nowiki>http://www.wikipedia.org</nowiki></code> <syntaxhighlight lang="wikitext" inline>https://www.wikipedia.org</syntaxhighlight>
| |
http://www.wikipedia.org https://www.wikipedia.org
|- |-
| |
Line 1,136: Line 1,134:
''(Not often used)'' ''(Not often used)''
| |
<code><nowiki><span class="plainlinks"></span></nowiki></code> <syntaxhighlight lang="wikitext" inline><span class="plainlinks"></span></syntaxhighlight>
| |
<span class="plainlinks"> </span> <span class="plainlinks"> </span>
|} |}


===Miscellaneous=== ===Miscellaneous===

===="As of" template====

* The '']'' template generates phrases like "As of April 2009" or "as of April 2009", and categorize information that will need updating. For an explanation of the parameters see the {{tl|As of}} documentation.

{| class="wikitable"
! What you type
! What it looks like
|-
|
<code><nowiki>{{As of|2009|4|df=us}}</nowiki></code>
|
{{As of|2009|4|df=us}}
|-
|
<code><nowiki>{{As of|2009|4|df=us|lc=y}}</nowiki></code>
|
{{As of|2009|4|df=us|lc=y}}
|}


====Media link==== ====Media link====


* To include links to non image uploads such as sounds, use a "media" link. For images, ]. * To include links to non-image uploads such as sounds, use a "media" link. For images, ].
* Some uploaded sounds are listed at ]. * Some uploaded sounds are listed at ].


Line 1,172: Line 1,151:
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,187: Line 1,166:
Using the {{tl|fullurl}} template Using the {{tl|fullurl}} template
| |
<code><nowiki></nowiki></code> <syntaxhighlight lang="wikitext" inline></syntaxhighlight>
| |
Line 1,194: Line 1,173:
Using the {{tl|Edit}} template Using the {{tl|Edit}} template
| |
<syntaxhighlight lang="wikitext" inline>{{edit}}</syntaxhighlight>
<code><nowiki>{{edit}}</nowiki></code>
| |
{{edit}} {{edit}}
Line 1,208: Line 1,187:
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
|} |}

==Pronunciation aids==

It is often desirable to provide an aid to pronunciation for a word. The ] and ] templates can be of assistance.

{| class="wikitable"
! What you type
! What it looks like
|-
|
<code><nowiki>'''Konjac''' {{IPAc-en|lang|pron|ˈ|k|oʊ|n|j|æ|k}}</nowiki></code>
|
'''Konjac''' {{IPAc-en|lang|pron|ˈ|k|oʊ|n|j|æ|k}}
|-
|
<code><nowiki>'''Konjac''' ({{IPAc-en|lang|pron|ˈ|k|oʊ|n|j|æ|k}} {{respell|KOHN|yak}})</nowiki></code>
|
'''Konjac''' ({{IPAc-en|lang|pron|ˈ|k|oʊ|n|j|æ|k}} {{respell|KOHN|yak}})
|-
|
<code><nowiki>''Konjac'' is pronounced {{IPAc-en|ˈ|k|oʊ|n|j|æ|k}} in English.</nowiki></code>
|
''Konjac'' is pronounced {{IPAc-en|ˈ|k|oʊ|n|j|æ|k}} in English.
|}

Refer to ] for more information.


==Musical notation== ==Musical notation==
{{main|Help:Score}} {{main|Help:Score}}
Musical notation is added by using the {{xtag|score|p}} extension tag. For example: Musical notation is added by using the {{xtag|score|p}} ] HTML-like tag. For example:
: :
{{markup {{markup
|<nowiki><score>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score></nowiki> |<syntaxhighlight lang="wikitext"><score>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score></syntaxhighlight>
|<score>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score> |<score>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score>
}} }}
Line 1,262: Line 1,215:
! Notes ! Notes
|- style="vertical-align:top;" |- style="vertical-align:top;"
| <pre style="white-space: pre-wrap;">The image name, the word thumb then the caption : | <syntaxhighlight lang="wikitext" style="white-space: pre-wrap;">The image name, the word thumb then the caption :
<nowiki>]</nowiki></pre> ]</syntaxhighlight>


| The image name, the word thumb then the caption : | The image name, the word thumb then the caption :
Line 1,276: Line 1,229:


|- style="vertical-align: top;" |- style="vertical-align: top;"
| <pre>A picture: <nowiki>]</nowiki></pre> | <syntaxhighlight lang="wikitext">A picture: ]</syntaxhighlight>


| A picture: ] | A picture: ]
Line 1,285: Line 1,238:
* Embedding the image will affect the vertical formatting of text. * Embedding the image will affect the vertical formatting of text.
|- style="vertical-align: top;" |- style="vertical-align: top;"
| <pre>With alternative text: | <syntaxhighlight lang="wikitext">With alternative text:
<nowiki>]</nowiki></pre> ]</syntaxhighlight>


| With alternative text: | With alternative text:
Line 1,295: Line 1,248:


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <pre>With link: | <syntaxhighlight lang="wikitext">With link:
<nowiki>]</nowiki></pre> ]</syntaxhighlight>


| With link: | With link:
Line 1,304: Line 1,257:


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <syntaxhighlight lang="moin" style="white-space: pre-wrap;">Forced to the centre of the page | <syntaxhighlight lang="wikitext" style="white-space: pre-wrap;">Forced to the centre of the page
using the ''frame'' tag (attribute), a ''centre'' tag and a caption: using the ''frame'' tag (attribute), a ''centre'' tag and a caption:
]</syntaxhighlight> ]</syntaxhighlight>
Line 1,318: Line 1,271:


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <syntaxhighlight lang="moin" style="white-space: pre-wrap;">Forced to the left side of the page | <syntaxhighlight lang="wikitext" style="white-space: pre-wrap;">Forced to the left side of the page
using the ''thumb'' attribute, the ''left'' attribute and a caption: using the ''thumb'' attribute, the ''left'' attribute and a caption:
]</syntaxhighlight> ]</syntaxhighlight>
Line 1,331: Line 1,284:


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <syntaxhighlight lang="moin" style="white-space: pre-wrap;">Forced to the right side of the page | <syntaxhighlight lang="wikitext" style="white-space: pre-wrap;">Forced to the right side of the page
''without'' a caption: ''without'' a caption:
]</syntaxhighlight> ]</syntaxhighlight>
Line 1,342: Line 1,295:


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <pre>A picture resized to 50 pixels... | <syntaxhighlight lang="wikitext">A picture resized to 50 pixels...
<nowiki>]</nowiki></pre> ]</syntaxhighlight>


| A picture resized to 50 pixels... | A picture resized to 50 pixels width...
] ]


| |
* {{anchor|px tag}}The ] explains more options. * {{anchor|px tag}}The ] explains more options.
* This should be used very sparingly, thumb images are always of the same width. * Sizing in pixels is deprecated and should be used very sparingly.
* There is an ] that can be used to display tall images. These tags are optimised for both laptop and mobile phone screens. * There is an ] that should be used instead. These tags are optimised for both laptop and mobile phone screens.


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <pre>Linking directly to the description page of an image: | <syntaxhighlight lang="wikitext">Linking directly to the description page of an image:
<nowiki>]</nowiki></pre> ]</syntaxhighlight>


| Linking directly to the description page of an image: | Linking directly to the description page of an image:
Line 1,364: Line 1,317:


|- style="vertical-align:top;" |- style="vertical-align:top;"
| <pre>Linking directly to an image without displaying it: | <syntaxhighlight lang="wikitext">Linking directly to an image without displaying it:
<nowiki>]</nowiki></pre> ]</syntaxhighlight>


| Linking directly to an image without displaying it: | Linking directly to an image without displaying it:
Line 1,375: Line 1,328:
|- style="vertical-align:top;" |- style="vertical-align:top;"
| |
<syntaxhighlight lang="html">Example: <syntaxhighlight lang="wikitext">Example:
<div style="display: inline; width: 220px; float: right;"> <div style="display: inline; width: 220px; float: right;">
]] </div></syntaxhighlight> ]] </div></syntaxhighlight>
Line 1,389: Line 1,342:
|- style="vertical-align:top;" |- style="vertical-align:top;"
| |
<pre><nowiki>Example: <syntaxhighlight lang="wikitext">Example:


{| align=right {| style="text-align: right;"
|- |-
| |
Line 1,401: Line 1,354:
| |
] ]
|}</nowiki></pre> |}</syntaxhighlight>


| |
Example: Example:


{| align=right {| style="text-align: right;"
|- |-
| |
Line 1,424: Line 1,377:
==Tables== ==Tables==
{{main|Help:Table}} {{main|Help:Table}}
{{See also|Misplaced Pages:Manual of Style/Tables#Appropriate}}
There are two ways to build tables: There are two ways to build tables:
* Using specific wiki markup: (see ]). * Using specific wiki markup: (see ]).
* Using HTML elements: {{tag|table|o}}, {{tag|tr|o}}, {{tag|td|o}} or {{tag|th|o}}. * Using HTML elements: {{tag|table|o}}, {{tag|tr|o}}, {{tag|td|o}} or {{tag|th|o}}.

{{See also|Misplaced Pages:Manual of Style/Tables#Appropriate}}


==Columns== ==Columns==
Line 1,438: Line 1,390:
{{see also|APA style|The Chicago Manual of Style{{!}}Chicago style|Harvard style|MLA style}} {{see also|APA style|The Chicago Manual of Style{{!}}Chicago style|Harvard style|MLA style}}


Making a reference citing a printed or online source can be accomplished by using the {{tag|ref}} wiki markup tags. Inside these tags details about the reference are added. Making a reference citing a printed or online source can be accomplished by using the {{xtag|ref}} wiki markup tags. Inside these tags details about the reference are added.


Details about the citation can be provided using a structure provided by various templates; the table below lists some typical citation components. Details about the citation can be provided using a structure provided by various templates; the table below lists some typical citation components.
Line 1,446: Line 1,398:
! What it's for !! What you type ! What it's for !! What you type
|- |-
| {{Nowrap|To create the reference}} || {{tag|ref|params=name="reference name"|content=''add_template_name_here''}} | {{Nowrap|To create the reference}} || {{xtag|ref|params=name="reference name"|content=''add_template_name_here''|p}}
|- |-
| To cite a book || {{Tlx|cite book}} | To cite a book || {{Tlx|cite book}}
Line 1,474: Line 1,426:
| Accessed date || {{para|access-date|2008-12-25}} (only if url= is included) | Accessed date || {{para|access-date|2008-12-25}} (only if url= is included)
|- |-
| A complete reference tag || {{tag|ref|o|params=name="Wiki markup"}}<code><nowiki>{{cite web |url=https://en.wikipedia.org/Help:Wiki_markup |title=Help:Wiki markup |publisher=Wikimedia Foundation}}</nowiki></code>{{tag|ref|c}} | A complete reference tag || {{xtag|ref|o|params=name="Wiki markup"}}<syntaxhighlight lang="wikitext" inline>{{cite web |url=https://en.wikipedia.org/Help:Wiki_markup |title=Help:Wiki markup |publisher=Wikimedia Foundation}}</syntaxhighlight>{{xtag|ref|c}}
|- |-
| Referencing this again || {{tag|ref|s|params=name="Wiki markup"}} | Referencing this again || {{xtag|ref|s|params=name="Wiki markup"}}
|- |-
| Citation needed || {{tlx|Citation needed|{{tls|DATE}}}} | Citation needed || {{tlx|Citation needed|{{tls|DATE}}}}
Line 1,506: Line 1,458:
|- |-
| |
<pre>{{Transclusion demo}}</pre> <syntaxhighlight lang="wikitext">{{Transclusion demo}}</syntaxhighlight>
| |
{{Transclusion demo}} {{Transclusion demo}}
|- |-
| |
<pre>{{Help:Transclusion demo}}</pre> <syntaxhighlight lang="wikitext">{{Help:Transclusion demo}}</syntaxhighlight>
| |
{{Help:Transclusion demo}} {{Help:Transclusion demo}}
|- |-
| |
<syntaxhighlight lang="wikitext">
<pre>
This template takes two parameters, This template takes two parameters,
and creates underlined text with a and creates underlined text with a
Line 1,522: Line 1,474:
supporting CSS: supporting CSS:


{{H:title|This is the hover text| {{Tooltip|Hover your mouse over this text
Hover your mouse over this text}} |This is the hover text}}


Go to this page to see the H:title Go to this page to see the Tooltip
template itself: {{tl|H:title}} template itself: {{tl|Tooltip}}
</syntaxhighlight>
</pre>
| |


Line 1,535: Line 1,487:
supporting CSS: supporting CSS:


{{H:title|This is the hover text| {{Tooltip|Hover your mouse over this text
Hover your mouse over this text}} |This is the hover text}}


Go to this page to see the H:title Go to this page to see the Tooltip
template itself: {{tl|H:title}} template itself: {{tl|Tooltip}}


|} |}
Line 1,558: Line 1,510:
''You should sign your comments by appending four tildes to the comment, which adds your user name plus date/time.'' ''You should sign your comments by appending four tildes to the comment, which adds your user name plus date/time.''
| |
<syntaxhighlight lang="wikitext" inline>~~~~</syntaxhighlight>
<code><nowiki>~~~~</nowiki></code>
| |
] (]) {{CURRENTTIME}}, {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} (UTC) ] (]) {{CURRENTTIME}}, {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} (UTC)
Line 1,565: Line 1,517:
''Adding three tildes will add just your user name.'' ''Adding three tildes will add just your user name.''
| |
<syntaxhighlight lang="wikitext" inline>~~~</syntaxhighlight>
<code><nowiki>~~~</nowiki></code>
| |
] (]) ] (])
Line 1,572: Line 1,524:
''Adding five tildes gives the date/time alone.'' ''Adding five tildes gives the date/time alone.''
| |
<syntaxhighlight lang="wikitext" inline>~~~~~</syntaxhighlight>
<code><nowiki>~~~~~</nowiki></code>
| |
{{CURRENTTIME}}, {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} (UTC) {{CURRENTTIME}}, {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} (UTC)
Line 1,586: Line 1,538:
|- |-
| |
<code><nowiki></nowiki></code> <syntaxhighlight lang="wikitext" inline></syntaxhighlight>
| |
|} |}


Line 1,598: Line 1,550:
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,610: Line 1,562:
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,622: Line 1,574:
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,635: Line 1,587:
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
|- |-
| |
<code><nowiki>]</nowiki></code> <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| |
] ]
Line 1,655: Line 1,607:
|- |-
| ''Username (registered users).'' | ''Username (registered users).''
| <code><nowiki>]</nowiki></code> | <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| ] | ]
|- |-
| ''] address (unregistered users).'' | ''] address (unregistered users).''
| <code><nowiki>]</nowiki></code> | <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| ] | ]
|- |-
| ''] address (unregistered users).'' | ''] address (unregistered users).''
| <code><nowiki>]</nowiki></code> | <syntaxhighlight lang="wikitext" inline>]</syntaxhighlight>
| ] | ]
|} |}
Line 1,676: Line 1,628:
| |


<code><nowiki>I will change the color in {{color|blue|the middle part of}} this sentence.</nowiki></code> <syntaxhighlight lang="wikitext" inline>I will change the color in {{color|blue|the middle part of}} this sentence.</syntaxhighlight>


| |
Line 1,685: Line 1,637:
| |


<code><nowiki>This is how to {{Font color||yellow|highlight part of a sentence}}.</nowiki></code> <syntaxhighlight lang="wikitext" inline>This is how to {{Font color||yellow|highlight part of a sentence}}.</syntaxhighlight>


| |
Line 1,691: Line 1,643:
This is how to {{Font color||yellow|highlight part of a sentence}}. This is how to {{Font color||yellow|highlight part of a sentence}}.
|} |}




===Example text=== ===Example text===
The {{tlx|xt}} family of templates can be used on help pages and user pages to highlight e'''x'''ample tex'''t'''. The {{tlx|xt}} family of templates can be used to highlight e'''x'''ample tex'''t'''. These templates do not work in mainspace—that is, in regular articles—they are intended for use on project pages (such as ]), help pages, and user pages.

{{!bxt|These do not work in mainspace; that is, in articles.}}
{| class=wikitable {| class=wikitable
!What you type !What you type
!What you get !What you get
|- |-
|<kbd><nowiki>This is an {{</nowiki>'''xt'''<nowiki>|A correct example}} for comparison {{tick}}</nowiki></kbd> |<syntaxhighlight lang="wikitext" inline>This is {{xt|a correct example}} for comparison {{tick}}</syntaxhighlight>
|This is an {{xt|A correct example}} for comparison {{tick}} |This is {{xt|a correct example}} for comparison {{tick}}
|- |-
|<kbd><nowiki>this is an {{</nowiki>'''!xt'''<nowiki>|An incorrect example}} for example {{cross}}</nowiki></kbd> |<syntaxhighlight lang="wikitext" inline>This is {{!xt|an incorrect example}} for contrast {{cross}}</syntaxhighlight>
|this is an {{!xt|An incorrect example}} for example {{cross}} |This is {{!xt|an incorrect example}} for contrast {{cross}}
|- |-
|<kbd><nowiki>this is an {{</nowiki>'''mxt'''<nowiki>|In monospace}} for comparison</nowiki></kbd> |<syntaxhighlight lang="wikitext" inline>This is {{mxt|in monospace}} for comparison</syntaxhighlight>
|this is an {{mxt|In monospace}} for comparison |This is {{mxt|in monospace}} for comparison
|- |-
|<kbd><nowiki>this is an {{</nowiki>'''!mxt'''<nowiki>|In monospace}} for comparison</nowiki></kbd> |<syntaxhighlight lang="wikitext" inline>This is {{!mxt|in monospace}} for contrast</syntaxhighlight>
|this is an {{!mxt|In monospace}} for comparison |This is {{!mxt|in monospace}} for contrast
|- |-
|<kbd><nowiki>this is an {{</nowiki>'''bxt'''<nowiki>|in bold}} for comparison</nowiki></kbd> |<syntaxhighlight lang="wikitext" inline>This is {{bxt|in bold}} for comparison</syntaxhighlight>
|this is an {{bxt|In bold}} for comparison |This is {{bxt|in bold}} for comparison
|- |-
|<kbd><nowiki>this is an {{</nowiki>'''!bxt'''<nowiki>|In bold}} for comparison</nowiki></kbd> |<syntaxhighlight lang="wikitext" inline>This is {{!bxt|in bold}} for contrast</syntaxhighlight>
|this is an {{!bxt|In bold}} for comparison |This is {{!bxt|in bold}} for contrast
|} |}


===Show deleted or inserted text=== ===Show deleted or inserted text===
{{details|Misplaced Pages:Talk page guidelines}} {{details|Misplaced Pages:Talk page guidelines#Editing own comments}}
*When editing your own previous remarks in talk pages, it is sometimes appropriate to mark up deleted or inserted content: * When editing regular Misplaced Pages articles, just make your changes, and do not mark them up in any special way, except when the article itself discusses deleted or inserted content, such as an amendment to a statute:
**It is best to indicate deleted content using the strike-through markup {{tag|s}}. ** to indicate deleted content, use {{tag|del}}
**It is best to indicate inserted content using the underline markup {{tag|u}}. ** to indicate inserted content, use {{tag|ins}}
* This also applies to changing one's own talk page comments.
*When editing regular Misplaced Pages articles, just make your changes, and do not mark them up in any special way. However, when the article itself discusses deleted or inserted content, such as an amendment to a statute:
**It is best to indicate deleted content using the strike-through markup {{tag|del}}.
**It is best to indicate inserted content using the underline markup {{tag|ins}}.
Note: {{tag|s|content=}} and {{tag|u|content=}} (speced in HTML 3 & 4) are considerably more popular than {{tag|del|content=}} and {{tag|ins|content=}} (speced in HTML 5) on Misplaced Pages.


{| class="wikitable" {| class="wikitable"
Line 1,734: Line 1,683:
|- |-
| |
<code><nowiki>You can <del>strike out deleted material</del> and <ins>underline new material</ins>.</nowiki></code> <syntaxhighlight lang="wikitext" inline>You can <del>indicate deleted material</del> and <ins>inserted material</ins>.</syntaxhighlight>
| |
You can <del>strike out deleted material</del> and <ins>underline new material</ins>. You can <del>indicate deleted material</del> and <ins>inserted material</ins>.
|- |}
|
Alternative markup:


===<span class="anchor" id="Strikethrough"></span> Strikethrough ===
<code><nowiki>You can <s>strike out deleted material</s> and <u>underline new material</u>.</nowiki></code>
{{see also|Help:HTML in wikitext#s}}
|
The {{tl|Strikethrough}} template marks up a span of text with the {{tag|s}} tag. This is usually rendered visually by drawing a horizontal line through it. Outside of articles, it can be used to mark something as no longer accurate or relevant without removing it from view. Do not use it, however, to indicate document edits. For that, use the {{tag|del}} tag instead. See {{slink||Show deleted or inserted text}} for details.



You can <s>strike out deleted material</s> and <u>underline new material</u>.
|}
===Strike through===
{{anchor|Strikethrough}}
This is also possible with the {{tlx|strike}} template.
{| class=wikitable {| class=wikitable
!What you type !What you type
!What you get !What you get
|- |-
|<kbd><nowiki>This is {{</nowiki>'''strike'''<nowiki>|a misplaced bit of text}} for comparison</nowiki></kbd> |<kbd><nowiki>This is {{</nowiki>'''Strikethrough'''<nowiki>|an obsolete stretch of text}} for comparison</nowiki></kbd>
|This is {{strike|a misplaced bit of text}} for comparison |This is {{Strikethrough|an obsolete stretch of text}} for comparison
|} |}


Line 1,769: Line 1,709:
|- |-
| |
<syntaxhighlight lang="wikitext">
<pre>'''&amp;lt;nowiki&amp;gt; tag:'''
'''&lt;nowiki&gt; tag:'''


&lt;nowiki&gt; <nowiki>
The <nowiki> tag ignores ] The <nowiki> tag ignores ]
''markup''. It reformats text by ''markup''. It reformats text by
Line 1,777: Line 1,718:
spaces. It still interprets spaces. It still interprets
characters specified by characters specified by
&amp;name;: &amp;rarr; &amp;name;: &rarr;
&lt;/nowiki&gt;</pre> </nowiki>
</syntaxhighlight>
| |
'''&lt;nowiki&gt; tag:''' '''&lt;nowiki&gt; tag:'''
Line 1,792: Line 1,734:
|- |-
| |
<syntaxhighlight lang="wikitext">
<pre>'''&amp;lt;pre&amp;gt; tag:'''
'''&lt;pre&gt; tag:'''


&lt;pre&gt;The &lt;pre&gt; tag ignores ] <pre>The &lt;pre&gt; tag ignores ]
''markup'' as does the &lt;nowiki&gt; ''markup'' as does the &lt;nowiki&gt;
tag. Additionally, &lt;pre&gt; displays tag. Additionally, &lt;pre&gt; displays
Line 1,800: Line 1,743:
not reformat text spaces. not reformat text spaces.
It still interprets special It still interprets special
characters: &amp;rarr; characters: &rarr;</pre>
</syntaxhighlight>
&lt;/pre&gt;</pre>
| |
'''&lt;pre&gt; tag:''' '''&lt;pre&gt; tag:'''
Line 1,833: Line 1,776:
|- |-
| |
<syntaxhighlight lang="moin">'''Leading space:''' <syntaxhighlight lang="wikitext">'''Leading space:'''


Leading spaces are another way Leading spaces are another way
Line 1,842: Line 1,785:
being reformatted. being reformatted.
It still interprets ] It still interprets ]
''markup'' and special characters: &amp;rarr;</syntaxhighlight> ''markup'' and special characters: &amp;</syntaxhighlight>
| |
'''Leading space:''' '''Leading space:'''
Line 1,861: Line 1,804:
{{shortcut|H:NOWIKI|WP:NOWIKI}} {{shortcut|H:NOWIKI|WP:NOWIKI}}


:{{tag|nowiki}} (wiki markup contained between these two tags is displayed as normal text)
In order for the software to interpret wiki markup, its parser first scans the page. When it sees its nowiki tags
:{{tag|nowiki|s}} (wiki markup that is interrupted by this tag is displayed as normal text, as detailed in examples below)
:{{tag|nowiki}} (]s all contained wiki markup), and
:{{tag|nowiki|s}} (escapes the interpretations it is designed to "break"),
it escapes its wikicode, so editors can document its markup ''using'' its markup.


These two kinds of nowiki operate in different ways, but both neutralize the rendering of wiki markup as shown in the examples below. For example, the characters that have wiki markup meaning at the beginning of a line ({{code|*}}, {{code|#}}, {{code|;}} and {{code|:}}) can be rendered in normal text. Editors can normalize the font of characters trailing a wikilink, which would otherwise appear in the wikilink font. And newlines added to wikitext for readability can be ignored.
Article editors can normalize the font of characters trailing <code>]outside</code> a wikilink, which would otherwise adhere to the wikilink font. They can also add line-spacing in the wikitext. Template editors: tag {{tag|nowiki|o}} works only on its source page, not the target; also <code>{{#tag<nowiki />:nowiki&nbsp;|&nbsp;''content''}}</code>, although it wraps that content in nowiki tags, it also does a ] on that content, which is entirely at odds with the intended purpose of nowiki for templates, subst, signatures, and the pipe-trick.


Note to template editors: tag {{tag|nowiki|o}} works only on its source page, not the target.
The two kinds of nowiki operate in different ways to target content, but they both remove meaning (subtract rendering) of wiki markup, then disappear into the background font. Nowiki does nothing toward rendering, but it can add newlines to wikitext (for readability), just like the HTML comment (the preferred method) can. Unlike wiki markup, nowiki does not remove the meaning of ''character entities'', either ] or MediaWiki ].

There is only one meaning for what {{tag|nowiki}} contains, so it needs few examples; but the singular {{tag|nowiki|s}} tag "contains" ''many'' linkage structures, where it is expected between bracketing-pair characters or in the keyword area. So this section has ''many'' examples and few mis-examples.

For example, only at the beginning of a line (bol of wikitext, bol in a transclusion, or beginning of a table cell), do {{code|*}}, {{code|#}}, {{code|;}} or {{code|:}} mean something.


{{markup {{markup
|<nowiki># Ordered list</nowiki> | <syntaxhighlight lang="wikitext"># Ordered list</syntaxhighlight>
|{{crlf2}} |{{crlf2}}
# Ordered list # Ordered list
|<nowiki><nowiki /># Ordered list</nowiki> | <syntaxhighlight lang="wikitext"><nowiki /># Ordered list</syntaxhighlight>
|{{crlf2}} |{{crlf2}}
<nowiki /># Ordered list <nowiki /># Ordered list
|<nowiki>A ]second.</nowiki> | <syntaxhighlight lang="wikitext">A ]second.</syntaxhighlight>
|A ]second. |A ]second.
|<nowiki>A ]<nowiki />second.</nowiki> | <syntaxhighlight lang="wikitext">A ]<nowiki />second.</syntaxhighlight>
|A ]<nowiki />second. |A ]<nowiki />second.
|<nowiki>a<nowiki> |<syntaxhighlight lang="wikitext">a<nowiki>


</nowiki>b</nowiki> </nowiki>b</syntaxhighlight >
|a<nowiki> |a<nowiki>


</nowiki>b </nowiki>b
|<nowiki>'<nowiki />'Italics' markup'<nowiki />'</nowiki> | <syntaxhighlight lang="wikitext">'<nowiki />'Italics' markup'<nowiki />'</syntaxhighlight>
|'<nowiki />'Italics' markup'<nowiki />' |'<nowiki />'Italics' markup'<nowiki />'
|<nowiki><nowiki>]</nowiki></nowiki> | <syntaxhighlight lang="wikitext"><nowiki>]</nowiki></syntaxhighlight>
|<nowiki>]</nowiki> | <nowiki>]</nowiki>
|&lt;nowiki>&lt;!-- revealed -->&lt;/nowiki> | <syntaxhighlight lang="wikitext"><nowiki><!-- revealed --></nowiki></syntaxhighlight>
| <nowiki> <!-- revealed --> </nowiki> | <nowiki><!-- revealed --></nowiki>
}} }}


The rest of the section consists of simple, live examples showing how a single nowiki tag escapes entire linkage structures, beyond ] and {{&nbsp;template&nbsp;<nowiki />}}: The rest of the section consists of simple, live examples showing how a single nowiki tag escapes entire linkage structures, beyond {{code|2=wikitext|]}} and {{tlc|template}}:


:]'' <nowiki />| ''label'' ]] :]'' <nowiki />| ''label'' ]]
Line 1,912: Line 1,849:


(These are all live examples.) (These are all live examples.)
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
] ]
] ]
] ]
] ]
<nowiki />]</pre> <nowiki />]</syntaxhighlight>
|

<poem> <poem>
:] :]
Line 1,927: Line 1,864:
:<nowiki />] :<nowiki />]
</poem> </poem>
}}

For '''nested structures''', escaping an inner structure escapes its outer structure too. For '''nested structures''', escaping an inner structure escapes its outer structure too.
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
] ]
] ]
] ]
]</pre> ]</syntaxhighlight>
|

<poem> <poem>
:] :]
Line 1,942: Line 1,879:
:] :]
</poem> </poem>
}}

For '''two, first pipes''', two nowiki tags are required: For '''two, first pipes''', two nowiki tags are required:
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
] ]
] ]
&lt;nowiki>] &lt;/nowiki></pre> &lt;nowiki>] &lt;/nowiki></syntaxhighlight>
|

<poem> <poem>
:] :]
Line 1,955: Line 1,892:
:<nowiki>] </nowiki> :<nowiki>] </nowiki>
</poem> </poem>
}}

====Displaying template calls==== ====Displaying template calls====
{{See also|Template:tl}} {{See also|Template:tl}}
Line 1,961: Line 1,898:
For templates, put nowiki before the first pipe. For templates, put nowiki before the first pipe.
If a parameter has a wikilink, put it in that, an inmost position. If a parameter has a wikilink, put it in that, an inmost position.
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
{<nowiki />{ val | u=&amp;gt; ] | 49082 }} {<nowiki />{ val | u=&gt; ] | 49082 }}
{{<nowiki /> val | u=&amp;gt; ] | 49082 }} {{<nowiki /> val | u=&gt; ] | 49082 }}
{{ val <nowiki />| u=&amp;gt; ] | 49082 }} {{ val <nowiki />| u=&gt; ] | 49082 }}
{{ val | u= &gt; ] | 49082 }<nowiki />} {{ val | u= &gt; ] | 49082 }<nowiki />}
{{ val | u= &gt; <nowiki />] | 49082 }} </pre> {{ val | u= &gt; <nowiki />] | 49082 }} </syntaxhighlight>
|

<poem> <poem>
:{<nowiki />{ val | u=&gt; ] | 49082 }} :{<nowiki />{ val | u=&gt; ] | 49082 }}
Line 1,974: Line 1,911:
:{{<nowiki /> val | u=&gt; ] | 49082 }} :{{<nowiki /> val | u=&gt; ] | 49082 }}
:{{ val <nowiki />| u=&gt; ] | 49082 }} :{{ val <nowiki />| u=&gt; ] | 49082 }}
:{{ val | u= &gt; <nowiki />] | 49082 }} {{OK}} :{{ val | u=&gt; <nowiki />] | 49082 }} {{OK}}
</poem> </poem>
}}


====Displaying magic words==== ====Displaying magic words====
Line 1,984: Line 1,922:


For a '''parser function''' nowiki goes between bracketing-pair characters, or anywhere before the : colon. For a '''parser function''' nowiki goes between bracketing-pair characters, or anywhere before the : colon.
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
{{ #ifeq: inYes | inYes | outYes | outNo }} {{ #ifeq: inYes | inYes | outYes | outNo }}
{<nowiki />{ #ifeq: inYes | inYes | outYes | outNo }} {<nowiki />{ #ifeq: inYes | inYes | outYes | outNo }}
{{<nowiki /> #ifeq: inYes | inYes | outYes | outNo }} {{<nowiki /> #ifeq: inYes | inYes | outYes | outNo }}
{{ #ifeq<nowiki />: inYes | inYes | outYes | outNo }} {{ #ifeq<nowiki />: inYes | inYes | outYes | outNo }}
{{ #ifeq: inYes | inYes | outYes | outNo }<nowiki />}</pre> {{ #ifeq: inYes | inYes | outYes | outNo }<nowiki />}</syntaxhighlight>
|

<poem> <poem>
:{{ #ifeq: inYes | inYes | outYes | outNo }} :{{ #ifeq: inYes | inYes | outYes | outNo }}
Line 1,999: Line 1,937:
:{{ #ifeq: inYes | inYes | outYes | outNo }<nowiki />} :{{ #ifeq: inYes | inYes | outYes | outNo }<nowiki />}
</poem> </poem>
}}

'''Behavioral switches''' expect the tag anywhere: '''Behavioral switches''' expect the tag anywhere:
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
1. __HIDDENCAT__ 1. __HIDDENCAT__
2. __HIDDENCAT<nowiki />__</pre> 2. __HIDDENCAT<nowiki />__</syntaxhighlight>
|

:1. __HIDDENCAT__{{break}} :1. __HIDDENCAT__{{break}}
:2. __HIDDENCAT<nowiki />__ :2. __HIDDENCAT<nowiki />__
}}

====Displaying tags==== ====Displaying tags====


{{tag|tags|o}} do not display; they are just markup. If you want them to, insert {{tag|nowiki|s}} after an {{code|<}} opening angle bracket; it goes only in the very front. Opening tags and closing tags must be treated separately. Tags do not display; they are just markup. If you want them to, insert {{tag|nowiki|s}} after an {{code|<}} opening angle bracket; it goes only in the very front. Opening tags and closing tags must be treated separately.
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
<span style=color:blue> Blue </span> <span style=color:blue> Blue </span>
<<nowiki />span style=color:blue> Blue <<nowiki />/span> <<nowiki />span style=color:blue> Blue <<nowiki />/span>
<section end=la<nowiki />bel /> </pre> <section end=la<nowiki />bel />
<<nowiki />section end=label /></syntaxhighlight>

|
<poem> <poem>
:<span style=color:blue> Blue </span> :<span style=color:blue> Blue </span>
:<<nowiki />span style=color:blue> Blue <<nowiki />/span> :<<nowiki />span style=color:blue> Blue <<nowiki />/span>
:<section end=la<nowiki />bel /> {{cross}} :<section end=la<nowiki />bel /> {{cross}}
:<<nowiki />section end=label /> {{tick}}
</poem> </poem>
}}

Use template {{tl|tag}} instead of nowiki tags to display parser tags: Use template {{tl|tag}} instead of nowiki tags to display parser tags:


Line 2,031: Line 1,971:


To '''display a nowiki tag''', you can (1) use {{tl|tag}}, (2) replace the < left angle bracket with its HTML character entity, or (3) nest nowiki tags in each other: To '''display a nowiki tag''', you can (1) use {{tl|tag}}, (2) replace the < left angle bracket with its HTML character entity, or (3) nest nowiki tags in each other:
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
{{ tag | nowiki }} {{ tag | nowiki }}
<code>&amp;lt; nowiki>...&amp;lt;/ nowiki ></code> <code>&amp;lt; nowiki>...&amp;lt;/ nowiki ></code>
<code><<nowiki />nowiki>...<<nowiki />/ nowiki ></code></pre> <code><<nowiki />nowiki>...<<nowiki />/ nowiki ></code></syntaxhighlight>
|

<poem> <poem>
:{{ tag | nowiki }} :{{ tag | nowiki }}
Line 2,042: Line 1,982:
:<code><<nowiki /> nowiki>...<<nowiki />/ nowiki ></code> :<code><<nowiki /> nowiki>...<<nowiki />/ nowiki ></code>
</poem> </poem>
|

<syntaxhighlight lang="wikitext">
<pre>
{{ tag | nowiki | s }} {{ tag | nowiki | s }}
<code>&amp;lt; nowiki /></code> <code>&amp;lt; nowiki /></code>
<code>&lt;&lt;nowiki /> nowiki /></code> <code>&lt;&lt;nowiki /> nowiki /></code>
<code>&lt;nowiki>&lt; nowiki />&lt;/nowiki></code></pre> <code>&lt;nowiki>&lt; nowiki />&lt;/nowiki></code></syntaxhighlight>
|

<poem> <poem>
:{{ tag | nowiki | s }} :{{ tag | nowiki | s }}
:<code>&lt; nowiki /></code> :<code>&lt; nowiki /></code>
:<code><<nowiki /> nowiki /></code> :<code><<nowiki /> nowiki /></code>
:<code><nowiki>< nowiki /></nowiki></code> :<syntaxhighlight lang="wikitext" inline>< nowiki /></syntaxhighlight>
</poem> </poem>
}}

Nowiki tags do not otherwise nest, so it is the second and fourth that displays: Nowiki tags do not otherwise nest, so it is the second and fourth that displays:
{{markup|

<syntaxhighlight lang="wikitext">
<pre>
1&lt;nowiki>2&lt;nowiki>3</nowiki>4</nowiki> 1&lt;nowiki>2&lt;nowiki>3</nowiki>4</nowiki>
&lt;nowiki>{{!}}&lt;nowiki></nowiki>{{!}}</nowiki> &lt;nowiki>{{!}}&lt;nowiki></nowiki>{{!}}</nowiki>
</syntaxhighlight>
</pre>
|

<poem> <poem>
:1<nowiki>2<nowiki>3</nowiki>4</nowiki> {{spaces|5}} ''{{small|second and fourth}}'' :1<nowiki>2<nowiki>3</nowiki>4</nowiki> {{spaces|5}} ''{{small|second and fourth}}''
:<nowiki>{{!}}<nowiki></nowiki>{{!}}</nowiki> :<nowiki>{{!}}<nowiki></nowiki>{{!}}</nowiki>
</poem> </poem>
}}

These simply scan from left to right. These simply scan from left to right.
The paired tags cannot overlap, because the very first pair-match nullifies any intervening tags inside. Unbalanced tags always display. The paired tags cannot overlap, because the very first pair-match nullifies any intervening tags inside. Unbalanced tags always display.
Line 2,076: Line 2,016:
{{shortcut|WP:PRE}} {{shortcut|WP:PRE}}


{{tag|pre|o}} is a parser tag that emulates the HTML {{tag|pre|o}} tag. It defines preformatted text that is displayed in a fixed-width font and is enclosed in a dashed box. HTML and wiki markups are escaped and spaces and line breaks are preserved, but HTML entities are parsed. {{tag|pre|o}} is a parser tag that emulates the HTML {{tag|pre|o}} tag. It defines preformatted text that is displayed in a fixed-width font and is enclosed in a dashed box. HTML-like and wiki markup tags are escaped, spaces and line breaks are preserved, but HTML elements are parsed.


{{markup|title={{tag|pre|o}} examples {{markup|title={{tag|pre|o}} examples
|<syntaxhighlight lang="tid"><pre><!--Comment--> |<syntaxhighlight lang="wikitext"><pre><!--Comment-->


] markup &amp;</pre></syntaxhighlight> ] markup &amp;</pre></syntaxhighlight>
Line 2,086: Line 2,026:
] markup &amp;</syntaxhighlight> ] markup &amp;</syntaxhighlight>
}} }}

{{tag|pre|o}} formatted text does not wrap, thus text may extend past the browser window:

<pre>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</pre>

To resolve this, {{tag|pre|o}} may use CSS styling to add wrapping or a horizontal scrollbar:
* Wrapping: {{tag|pre|o|params=style="white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; white-space:pre-wrap; word-wrap:break-word;"}}
* Scroll bar: {{tag|pre|o|params=style="overflow:auto; width:auto;"}}


As {{tag|pre|o}} is a parser tag, it escapes wikitext and HTML tags. This can be prevented with the use of <nowiki><includeonly></includeonly></nowiki> within the {{tag|pre|o}}, making it act more like its HTML equivalent: As {{tag|pre|o}} is a parser tag, it escapes wikitext and HTML tags. This can be prevented with the use of <nowiki><includeonly></includeonly></nowiki> within the {{tag|pre|o}}, making it act more like its HTML equivalent:


{{markup|title={{tag|pre|o}} with <nowiki><includeonly></includeonly></nowiki> example {{markup|title={{tag|pre|o}} with <nowiki><includeonly></includeonly></nowiki> example
|<syntaxhighlight lang="tid"><pre<includeonly></includeonly>><!--Comment--> |<syntaxhighlight lang="wikitext"><pre<includeonly></includeonly>><!--Comment-->


] markup &amp;</pre></syntaxhighlight> ] markup &amp;</pre></syntaxhighlight>
Line 2,111: Line 2,043:
] markup &amp; ] markup &amp;


Alternatively, consider using {{tl|pre2}} template or {{xtag|syntaxhighlight|p|params=lang="text"}}. Alternatively, consider using {{tl|pre}} template or {{xtag|syntaxhighlight|p|params=lang="text"}}.


==Invisible text (comments)== ==Invisible text (comments)==
Line 2,219: Line 2,151:
'''{{tlf|CURRENTMONTHNAMEGEN}}''' is the genitive (possessive) grammatical form of the month name, as used in some languages but not in English; '''{{tlf|CURRENTMONTHNAME}}''' is the nominative (subject) form, as usually seen in English. '''{{tlf|CURRENTMONTHNAMEGEN}}''' is the genitive (possessive) grammatical form of the month name, as used in some languages but not in English; '''{{tlf|CURRENTMONTHNAME}}''' is the nominative (subject) form, as usually seen in English.


In languages where it makes a difference, you can use constructs like <code><nowiki>{{grammar:case|word}}</nowiki></code> to convert a word from the nominative case to some other case. For example, <code><nowiki>{{grammar:genitive|{{CURRENTMONTHNAME}}}}</nowiki></code> means the same as <code><nowiki>{{CURRENTMONTHNAMEGEN}}</nowiki></code>. <!-- Is there a reference for this, other than the source code (for example, phase3/languages/Lnaguage*.php) ? --> In languages where it makes a difference, you can use constructs like <syntaxhighlight lang="wikitext" inline>{{grammar:case|word}}</syntaxhighlight> to convert a word from the nominative case to some other case. For example, <syntaxhighlight lang="wikitext" inline>{{grammar:genitive|{{CURRENTMONTHNAME}}}}</syntaxhighlight> means the same as <syntaxhighlight lang="wikitext" inline>{{CURRENTMONTHNAMEGEN}}</syntaxhighlight>. <!-- Is there a reference for this, other than the source code (for example, phase3/languages/Lnaguage*.php) ? -->


==HTML== ==HTML==
Line 2,235: Line 2,167:
{{Help desk}} {{Help desk}}
See the 'Coding wiki markup' section of the Help navigation navbox below for additional links. See the 'Coding wiki markup' section of the Help navigation navbox below for additional links.
*] *]
*]: advanced ]. *]: advanced ].
*]: an introduction to ]. *]: an introduction to ].
Line 2,244: Line 2,176:
*]: MediaWiki application that allows for converting back and forth between wikitext and HTML. *]: MediaWiki application that allows for converting back and forth between wikitext and HTML.
*{{tl|Syntaxhighlight}}: template to show wrapped syntax-highlighted text. *{{tl|Syntaxhighlight}}: template to show wrapped syntax-highlighted text.

{{Help navigation}}
{{Misplaced Pages technical help|state=collapsed}} {{Misplaced Pages directories}}
{{Misplaced Pages editor navigation}}
{{Tools |state=collapsed}} {{Tools |state=collapsed}}



Latest revision as of 16:11, 27 November 2024

Misplaced Pages help page

For the encyclopedic section on wikitext, see Wiki § Editing. "H:WT" redirects here. For the welcoming templates, see Misplaced Pages:Welcoming committee/Welcome templates.
This help page is a how-to guide.
It explains concepts or processes used by the Misplaced Pages community. It is not one of Misplaced Pages's policies or guidelines, and may reflect varying levels of consensus.
Shortcuts
Wikitext

The markup language called wikitext, also known as wiki markup or wikicode, consists of the syntax and keywords used by the MediaWiki software to format a page. (Note the lowercase spelling of these terms.) To learn how to see this hypertext markup, and to save an edit, see Help:Editing. Generally, coding can be copied and pasted, without writing new code. There is a short list of markup and tips at Help:Cheatsheet.

In addition to wikitext, some HTML elements are also allowed for presentation formatting. See Help:HTML in wikitext for information on this.

Layout

Sections

Article sections in a page will follow that page's lead or introduction and, if there are four or more, the table of contents.

Section headings

Further information: Help:Section and Misplaced Pages:Manual of Style § Section headings

The = through ====== markup are headings for the sections with which they are associated.

  • A single = is styled as the article title and should not be used within an article.
  • Headings are styled through CSS and add an link. See this section for the relevant CSS.
  • Four or more headings cause a table of contents to be generated automatically.
  • Do not use any markup after the final heading markup – this will either break the heading, or will cause the heading to not be included in an edit summary.


Markup Renders as
= Heading 1 =
== Heading 2 ==
=== Heading 3 ===
==== Heading 4 ====
===== Heading 5 =====
====== Heading 6 ======
Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6


Templates: {{fake heading}} for use in documentation.

Horizontal rule

Further information: WP:LINE

The horizontal rule represents a paragraph-level thematic break. Do not use in article content, as rules are used only after main sections, and this is automatic.

Markup Renders as
----


HTML equivalent: <hr /> (which can be indented, whereas ---- always starts at the left margin.)

Table of contents

Further information: WP:TOC

When a page has at least four headings, a table of contents (TOC) will automatically appear after the lead and before the first heading. The TOC can be controlled by magic words or templates:

  • __FORCETOC__ forces the TOC to appear at the normal location regardless of the number of headings.
  • __TOC__ forces the TOC to appear at the point where the magic word is inserted instead of the normal location.
  • __NOTOC__ disables the TOC entirely.
  • {{TOC limit}} template can be used to control the depth of subsections included in the TOC. This is useful where the TOC is long and unwieldy.
  • Category:Misplaced Pages table of contents templates contains a number of specialized TOC templates.

Line breaks

Further information: Help:Line-break handling, Misplaced Pages:Line breaks usage, and Misplaced Pages:Manual of Style/Accessibility § Indentation

Line breaks or newlines are used to add whitespace between lines, such as separating paragraphs.

  • A line break that is visible in the content is inserted by pressing ↵ Enter twice.
  • Pressing ↵ Enter once will place a line break in the markup, but it will not show in the rendered content, except when using list markup.
  • Markup such as bold or italics will be terminated at a line break.
  • Blank lines within indented wikitext should not be added due to accessibility issues.
Markup Renders as
A single newline here
has no effect on the layout.
But an empty line starts a new paragraph, 
or ends a list or an indented part.

A single newline here has no effect on the layout.

But an empty line starts a new paragraph, or ends a list or an indented part.

HTML equivalent: <br> or <br /> can be used to break line layout.

Templates for line breaks:

  • {{break}} can add multiple line breaks.
  • {{-}} and {{clear}} adds a break with styling, to clear floating elements. Often used to prevent text from flowing next to unrelated tables or images.

Unbulleted list:

Indent text

Further information: WP:INDENT and Misplaced Pages:Manual of Style/Accessibility § Indentation

Indentation is most commonly used on talk pages.

Markup Renders as
Indentation as used on talk pages:
:Each colon at the start of a line
::causes the line to be indented by three more character positions.
:::(The indentation persists
so long as no carriage return or line break is used.)
:::Repeat the indentation at any line break.
::::Use an extra colon for each response.
:::::And so forth ...
::::::And so on ...
{{Outdent|::::::}}The outdent template can give a visual indicator that we're deliberately cancelling the indent (6 levels here)

Indentation as used on talk pages:

Each colon at the start of a line
causes the line to be indented by three more character positions.
(The indentation persists

so long as no carriage return or line break is used.)

Repeat the indentation at any line break.
Use an extra colon for each response.
And so forth ...
And so on ...
The outdent template can give a visual indicator that we're deliberately cancelling the indent (6 levels here)

Templates: {{outdent}}, {{outdent2}}

Blockquote

When there is a need for separating a block of text. This is useful for (as the name says) inserting blocks of quoted (and cited) text.

Markup Renders as
Normal text
<blockquote>
The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does.
</blockquote>
Normal text

Normal text

The blockquote tag will indent both margins when needed instead of the left margin only as the colon does.

Normal text

This uses an HTML tag; template {{quote}} results in the same render.

Center text

See also: Span and div, HTML tag, and Template:Align
Markup Renders as
<div class="center" style="width: auto; margin-left: auto; margin-right: auto;">Centered text</div>
Centered text

Template {{center}} uses the same markup. To center a table, see Help:Table#Centering tables. Please do not use <center>...</center> tags, as it is obsolete.

Align text to right

You can align content in a separate container:

Markup Renders as
<div style="text-align: right; direction: ltr; margin-left: 1em;">Text on the right</div>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Text on the rightLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Or; make the text float around it:

Markup Renders as
<div class="floatright">Text on the right</div>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Text on the rightLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
{{stack|Text on the right}}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Text on the rightLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lists

Further information: Help:List and MOS:LIST

Do not leave blank lines between items in a list unless there is a reason to do so, since this causes the MediaWiki software to interpret each item as beginning a new list.

Unordered lists

Shortcut
Markup Renders as
* Item1
* Item2
* Item3
* Item4
** Sub-item 4 a)
*** Sub-item 4 a) 1.
**** Sub-item 4 a) 1. i)
**** Sub-item 4 a) 1. ii)
** Sub-item 4 b)
* Item5

  • Item1
  • Item2
  • Item3
  • Item4
    • Sub-item 4 a)
      • Sub-item 4 a) 1.
        • Sub-item 4 a) 1. i)
        • Sub-item 4 a) 1. ii)
    • Sub-item 4 b)
  • Item5

Ordered lists

Shortcut
Markup Renders as
# Item1
# Item2
# Item3
# Item4
## Sub-item 1
### Sub-sub-item
#### Sub-sub-sub-item
## Sub-item 2
# Item5

  1. Item1
  2. Item2
  3. Item3
  4. Item4
    1. Sub-item 1
      1. Sub-sub-item
        1. Sub-sub-sub-item
    2. Sub-item 2
  5. Item5

Description lists

Shortcut

To list terms and definitions, start a new line with a semicolon (;) followed by the term. Then, type a colon (:) followed by a definition. The format can also be used for other purposes, such as make and models of vehicles, etc.

Description lists (formerly definition lists, and a.k.a. association lists) consist of group names corresponding to values. Group names (terms) are in bold. Values (definitions) are indented. Each group must include one or more definitions. For a single or first value, the : can be placed on the same line after ; – but subsequent values must be placed on separate lines.

Do not use a semicolon (;) simply to bold a line without defining a value using a colon (:). This usage renders invalid HTML5 and creates issues with screen readers. Also, use of a colon to indent (other than for talk page responses) may also render invalid HTML5 and cause accessibility issues per MOS:INDENTGAP.

Markup Renders as
; Term : Definition1

Term
Definition1
; Term
: Definition1
: Definition2
: Definition3
: Definition4

Term
Definition1
Definition2
Definition3
Definition4

HTML equivalent: <dl> <dt>...</dt>, <dd>...</dd> </dl>

Templates: {{defn}}

Retaining newlines and spaces

Shortcut

The MediaWiki software suppresses single newlines and converts lines starting with a space to preformatted text in a dashed box. HTML suppresses multiple spaces. It is often desirable to retain these elements for poems, lyrics, mottoes, oaths and the like. The Poem extension adds HTML-like <poem>...</poem> tags to maintain newlines and spaces. These tags may be used inside other tags such as <blockquote>...</blockquote>; the template {{poemquote}} provides a convenient shorthand. CSS styles may be applied to this tag, e.g.: <poem style="margin-left: 2em;">.

Markup Renders as
<poem>
In Xanadu did Kubla Khan
  A stately pleasure-dome decree:
Where Alph, the sacred river, ran
  Through caverns measureless to man
Down to a sunless sea.
So twice five miles of fertile ground
  With walls and towers were girdled round:
And there were gardens bright with sinuous rills,
  Where blossomed many an incense-bearing tree;
And here were forests ancient as the hills,
  Enfolding sunny spots of greenery.
</poem>

In Xanadu did Kubla Khan
  A stately pleasure-dome decree:
Where Alph, the sacred river, ran
  Through caverns measureless to man
Down to a sunless sea.

So twice five miles of fertile ground
  With walls and towers were girdled round:
And there were gardens bright with sinuous rills,
  Where blossomed many an incense-bearing tree;
And here were forests ancient as the hills,
  Enfolding sunny spots of greenery.

Poems and their translation can be presented side by side, and the language can be indicated with lang="xx". Following the last side-by-side block, {{Clear|left}} must be used to cancel "float:left;" and to re-establish normal flow. Note that this method does not require a table and its columns to achieve the side-by-side presentation.

Markup

<poem lang="fr" style="float:left;">Frère Jacques, frère Jacques,
Dormez-vous? Dormez-vous?
Sonnez les matines! Sonnez les matines!
Ding, dang, dong. Ding, dang, dong.</poem>
<poem style="margin-left:2em; float:left;">Are you sleeping? Are you sleeping?
Brother John, Brother John,
Morning bells are ringing! Morning bells are ringing!
Ding, dang, dong. Ding, dang, dong.</poem>{{Clear|left}}

Renders as

Frère Jacques, frère Jacques,
Dormez-vous? Dormez-vous?
Sonnez les matines! Sonnez les matines!
Ding, dang, dong. Ding, dang, dong.

Are you sleeping? Are you sleeping?
Brother John, Brother John,
Morning bells are ringing! Morning bells are ringing!
Ding, dang, dong. Ding, dang, dong.

Format

Text formatting

Description What you type What it looks like

italics, bold, small capital letters

To ''italicize text'', put two consecutive apostrophes on each side of it.
Three apostrophes each side will '''bold the text'''.
Five consecutive apostrophes on each side (two for italics plus three for bold) produces '''''bold italics'''''.
'''''Italic and bold formatting''''' works correctly only within a single line.
For text as {{smallcaps|small caps}}, use the template {{tl|smallcaps}}.

To italicize text, put two consecutive apostrophes on each side of it.

Three apostrophes each side will bold the text.

Five consecutive apostrophes on each side (two for italics plus three for bold) produces bold italics.

Italic and bold formatting works correctly only within a single line.

To reverse this effect where it has been automatically applied, use {{nobold}} and {{noitalic}}.

For text as small caps, use the template {{smallcaps}}.

Small chunks of source code within a line of normal text.

Code is displayed in a monospace font.

function <code>int m2()</code> is nice.

function int m2() is nice.

Syntax highlighting for source code.

Computer code has colored text and more stringent formatting. For example, to define a function: int m2(), with highlights, in C++.

See here for a full list of supported languages that can be put in lang="????"

<syntaxhighlight lang="cpp">
#include <iostream>
int m2 (int ax, char *p_ax) {
  std::cout <<"Hello World!";
  return 0;
}</syntaxhighlight>
#include <iostream>
int m2 (int ax, char *p_ax) {
  std::cout <<"Hello World!";
  return 0;
}

Small text

Use <small>small text</small> only 
when necessary.

Use small text only when necessary.

a <small> span

To match, for example, the font-size used in an ], the "small" tag can also be used to 
<small style="font-size:87%;">reduce a text's font-size to 87%</small>.

To match, for example, the font-size used in an image caption, the "small" tag can also be used to reduce a text's font-size to 87%.

Big text

Better not use <big>big text</big>, unless <small>it's <big>within</big> small</small> text.

Better not use big text, unless it's within small text.

To prevent two words from becoming separated by a linewrap (e.g. Mr. Smith or 400 km/h) a non-breaking space, sometimes also called a "non-printing character", may be used between them. (For three or more words, the template {{nowrap}} is probably more suitable.)

Mr.&amp;nbsp;Smith or 400&amp;nbsp;km/h

Mr. Smith or 400 km/h

Extra spacing within text is usually best achieved using the {{pad}} template.

Mary {{pad|4.0em}} had a little lamb.

Mary   had a little lamb.

Special characters

See also: Help:Special characters and List of XML and HTML character entity references

Special characters can often be displayed using numeric character references or character entity references. See Character encodings in HTML for more information. For example, &Agrave; and &#xC0; both render À (A-grave). Percent-encoding can't be used, as it works only in URLs.

Diacritical marks

Diacritic marks, using character entity references.

What you type What it looks like
&Agrave; &Aacute; &Acirc; &Atilde; &Auml; &Aring; &AElig;
&Ccedil; &Egrave; &Eacute; &Ecirc; &Euml;
&Igrave; &Iacute; &Icirc; &Iuml; &Ntilde;
&Ograve; &Oacute; &Ocirc; &Otilde; &Ouml; &Oslash; &OElig;
&Ugrave; &Uacute; &Ucirc; &Uuml; &Yuml; &szlig;
&agrave; &aacute; &acirc; &atilde; &auml; &aring; &aelig; &ccedil;
&egrave; &eacute; &ecirc; &euml;
&igrave; &iacute; &icirc; &iuml; &ntilde;
&ograve; &oacute; &ocirc; &otilde; &ouml; &oslash; &oelig;
&ugrave; &uacute; &ucirc; &uuml; &yuml;

À Á Â Ã Ä Å Æ

Ç È É Ê Ë

Ì Í Î Ï Ñ

Ò Ó Ô Õ Ö Ø Œ

Ù Ú Û Ü Ÿ ß

à á â ã ä å æ ç

è é ê ë

ì í î ï ñ

ò ó ô õ ö ø œ

ù ú û ü ÿ

Punctuation special characters

Using character entity references.

What you type What it looks like
&iquest; &iexcl; &sect; &para; ¿ ¡ § ¶
&dagger; &Dagger; &bull; &ndash; &mdash; † ‡ • – —
&lsaquo; &rsaquo; &laquo; &raquo; ‹ › « »
&lsquo; &rsquo; &ldquo; &rdquo; ‘ ’ “ ”
&apos; &quot; ' "

Escaping punctuation characters

The <pre>, <nowiki>, and <code> markup tags are also available, for writing "" for example. These tags prevent these characters from being recognised as wiki markup, which is a possibility in some circumstances.

Commercial symbols

Using character entity references.

What you type What it looks like
&trade; &copy; &reg; ™ © ®
&cent; &euro; &yen; &pound; &curren; ¢ € ¥ £ ¤

Greek characters

Using character entity references.

What you type What it looks like
&alpha; &beta; &gamma; &delta; &epsilon; &zeta; α β γ δ ε ζ
&Alpha; &Beta; &Gamma; &Delta; &Epsilon; &Zeta; Α Β Γ Δ Ε Ζ
&eta; &theta; &iota; &kappa; &lambda; &mu; &nu; η θ ι κ λ μ ν
&Eta; &Theta; &Iota; &Kappa; &Lambda; &Mu; &Nu; Η Θ Ι Κ Λ Μ Ν
&xi; &omicron; &pi; &rho; &sigma; &sigmaf; ξ ο π ρ σ ς
&Xi; &Omicron; &Pi; &Rho; &Sigma; Ξ Ο Π Ρ Σ
&tau; &upsilon; &phi; &chi; &psi; &omega; τ υ φ χ ψ ω
&Tau; &Upsilon; &Phi; &Chi; &Psi; &Omega; Τ Υ Φ Χ Ψ Ω

Egyptian hieroglyphs

Main page: Help:WikiHiero syntax

WikiHiero is a software extension that renders Egyptian hieroglyphs as PNG images using <hiero> HTML-like tags.

Example:

Markup Renders as
<hiero>P2</hiero>
P2

Subscripts and superscripts

  • The Manual of Style prefers the <sub> and <sup> formats, for example x<sub>1</sub>. So this should be used under most circumstances.
  • The latter methods of sub/superscripting cannot be used in the most general context, as they rely on Unicode support that may not be present on all users' machines.
Description What you type What it looks like

Subscripts

x<sub>1</sub> x<sub>2</sub> x<sub>3</sub> or
x&#8320; x&#8321; x&#8322; x&#8323; x&#8324;
x&#8325; x&#8326; x&#8327; x&#8328; x&#8329;

x1 x2 x3 or

x₀ x₁ x₂ x₃ x₄

x₅ x₆ x₇ x₈ x₉

Superscripts

x<sup>1</sup> x<sup>2</sup> x<sup>3</sup> or
x&#8304; x&sup1; x&sup2; x&sup3; x&#8308;
x&#8309; x&#8310; x&#8311; x&#8312; x&#8313;

x x x or

x⁰ x¹ x² x³ x⁴

x⁵ x⁶ x⁷ x⁸ x⁹

Combined

&epsilon;<sub>0</sub> = 8.85 &times; 10<sup>&minus;12</sup> C&sup2; / J m
1 ] = 1 E+4 m&sup2;

ε0 = 8.85 × 10 C² / J m

1 hectare = 1 E+4 m²

Characters in the Private Use Area, and invisible formatting characters

Main page: MOS:TEXT § PUA and RTL

Invisible and PUA (Private Use Areas) characters should be avoided where possible. When needed, they should both be replaced with their (hexa)decimal code values (as "&#(x)...;"). This renders invisible characters visible, for manual editing, and allows AWB to process pages with PUA characters. The latter should also be tagged with the {{PUA}} template for tracking and future maintenance.

Mathematical characters and formulae

Mathematical characters

What you type What it looks like
&int; &sum; &prod; &radic; ∫ ∑ ∏ √
&minus; &plusmn; &infin; − ± ∞
&asymp; &prop; &equiv; &ne; ≈ ∝ ≡ ≠
&le; &ge; ≤ ≥
&times; &middot; &divide; &part; × · ÷ ∂
&prime; &Prime; ′ ″
&nabla; &permil; &deg; &there4; &alefsym; ∇ ‰ ° ∴ ℵ
&oslash; ø
&isin; &notin; &cap; &cup; ∈ ∉ ∩ ∪
&sub; &sup; &sube; &supe; ⊂ ⊃ ⊆ ⊇
&not; &and; &or; &exist; &forall; ¬ ∧ ∨ ∃ ∀
&rArr; &lArr; &dArr; &uArr; &hArr; ⇒ ⇐ ⇓ ⇑ ⇔
&rarr; &larr; &darr; &uarr; &harr; → ← ↓ ↑ ↔

Mathematical formulae

Main page: Help:Displaying a formula
  • Formulae that include mathematical letters, like x, and operators like × should not use the plain letter x. See math font formatting. For a comprehensive set of symbols, and comparison between <math> tags and the {{math}} template see section TeX vs HTML.
  • The <math> tag typesets using LaTeX markup, which may render as an image or as HTML, depending on environmental settings. The <math> tag is best for the complex formula on its own line in an image format. If you use this tag to put a formula in the line with text, put it in the {{nowrap}} template.
  • The {{math}} template uses HTML, and will size-match a serif font, and will also prevent line-wrap. All templates are sensitive to the = sign, so remember to replace = with {{=}} in template input, or start the input with 1=. Use wiki markup '' and ''' inside the {{math}} template, as well as other HTML entities. The {{math}} template is best for typeset formulas in line with the text.
Markup Renders as
<math>2x \times 4y \div 6z + 8 - \frac {y}{z^2} = 0</math>
{{math|2''x'' &times; 4''y'' &divide; 6''z'' + 8 &minus; {{sfrac|''y''|''z''<sup>2</sup>}} {{=}} 0}}
<math>\sin 2\pi x + \ln e</math>
{{math|sin 2&amp;pi;''x'' + ln ''e''}}

2 x × 4 y ÷ 6 z + 8 y z 2 = 0 {\displaystyle 2x\times 4y\div 6z+8-{\frac {y}{z^{2}}}=0}

2x × 4y ÷ 6z + 8 − ⁠y/z⁠ = 0

sin 2 π x + ln e {\displaystyle \sin 2\pi x+\ln e}
sin 2πx + ln e

Spacing in simple math formulae

  • Using &nbsp; to prevent line break is not needed; the {{math}} template will prevent line breaks anyway; you can use <br /> if you need an explicit line break inside a formula.
Markup Renders as
It follows that {{math|''x''<sup>2</sup> &ge; 0}} for real {{mvar|x}}.

It follows that x ≥ 0 for real x.

Complicated formulae

  • See Help:Displaying a formula for how to use <math>.
  • A formula displayed on a line by itself should be indented using <math display=block>...</math>
Markup Renders as
<math display=block>\sum_{n=0}^\infty \frac{x^n}{n!}</math>

n = 0 x n n ! {\displaystyle \sum _{n=0}^{\infty }{\frac {x^{n}}{n!}}}

Indenting by using the colon (:) character (i.e. using :<math></math> instead of <math display=block></math>) is discouraged for accessibility reasons.

Links and URLs

Main page: Help:Link

Wikilinks

Wikilinks are used in wikitext markup to produce internal links between pages. You create wikilinks by putting double square brackets around text designating the title of the page you want to link to. Thus, ] will be rendered as Texas. Optionally, you can use a vertical bar (|) to customize the link title. For example, typing ] will produce Lone Star State, a link that is displayed as "Lone Star State" but in fact links to Texas.

Link to another wiki article

  • Internally, the first letter of the target page is automatically capitalized and spaces are represented as underscores (typing an underscore in the link has the same effect as typing a space, but is not recommended).
  • Thus the link hereafter is to the Web address en.wikipedia.org/Public_transport, which is the Misplaced Pages article with the name "Public transport". See also Canonicalization.
  • A red link is a page that doesn't exist yet; it can be created by clicking on the link.
  • A link to its own page will appear only as bold text.
Markup Renders as
London has ].

London has public transport.

Link to this page: "]" will appear only as bold text.

Link to this page: "Help:Wikitext" will appear only as bold text.

Renamed link

  • Same target, different name.
  • The target ("piped") text must be placed first, then the text to be displayed second.
What you type What it looks like

New York also has ].

New York also has public transportation.

Automatically rename links

  • Simply typing the pipe character | after a link will automatically rename the link in certain circumstances. The next time you open the edit box you will see the expanded piped link. When previewing your edits, you will not see the expanded form until you press Save and Edit again. The same applies to links to sections within the same page.
  • See Pipe trick for details.
Description What you type What it looks like

Automatically hide stuff in parentheses

]

kingdom

Automatically hide the comma and following text ] Seattle

Automatically hide namespace

]

Village pump

Or both

]

Manual of Style

But this doesn't work for section links

]

]

Blend link

  • Endings are blended into the link.
    • Exception: a trailing apostrophe (') and any characters following the apostrophe are not blended.
  • Preferred style is to use this instead of a piped link, if possible.
  • Blending can be suppressed by using the <nowiki /> tag, which may be desirable in some instances.
Description What you type What it looks like
Blending active

San Francisco also has ]ation. Examples include ]es, ]s, and ]s.

San Francisco also has public transportation. Examples include buses, taxicabs, and trams.
A ]second A micro-second

Blending suppressed

A ]<nowiki />second.

A micro-second

Link to a section of a page

  • The part after the hash sign (#) must match a section heading on the page. Matches must be exact in terms of spelling, case, and punctuation. Links to non-existent sections are not broken; they are treated as links to the beginning of the page.
  • Include "| link title" to create a stylish (piped) link title.
  • If sections have the same title, add a number to link to any but the first. #Example section 3 goes to the third section named "Example section". You can use the pipe and retype the section title to display the text without the # symbol.
What you type What it looks like

] is a link to a section within another page.

Misplaced Pages:Manual of Style#Italics is a link to a section within another page.

] is a link to another section on the current page. ] is a link to the same section without showing the # symbol.

#Links and URLs is a link to another section on the current page. Links and URLs is a link to the same section without showing the # symbol.

] is a piped link to a section within another page.

Italics is a piped link to a section within another page.

Create a page link

  • To create a new page:
    1. Create a link to it on some other (related) page.
    2. Save that page.
    3. Click on the link you just made. The new page will open for editing.
  • For more information, see starting an article and check out Misplaced Pages's naming conventions.
  • Please do not create a new article without linking to it from at least one other article.
Description What you type What it looks like

Links to pages that don't exist yet look red.

The article about ] doesn't exist yet.

The article about cardboard sandwiches doesn't exist yet.

Redirects

Main page: Help:Redirect
  • Redirect one article title to another by placing a directive like the one shown to the right on the first line of the article (such as at a page titled "US").
  • It is possible to redirect to a section. For example, a redirect to United States#History will redirect to the History section of the United States page, if it exists.
Description What you type

Redirect to an article

#REDIRECT ]

Redirect to a section

#REDIRECT ]

Link to another namespace

  • The full page name should be included in double square brackets.
What you type What it looks like

See the ].

See the Misplaced Pages:Manual of Style.

Link to the same article in another language (interlanguage links)

Main pages: Help:Interlanguage links and Misplaced Pages:Complete list of language wikis available
After the launch of Wikidata, interlanguage links are now added through it. Links in articles should exist only in special cases, for example when an article in one language has two articles in another language.
  • To link to a corresponding page in another language, use the form: ].
  • It is recommended interlanguage links be placed at the very end of the article.
  • Interlanguage links are NOT visible within the formatted article, but instead appear as language links on the sidebar (to the left) under the menu section "languages".
Description What you type

Link from English article "Plankton" to the Spanish article "Plancton".

"es" is the language code for "español" (the Spanish language).

]

Other examples: French (fr for français), German (de for Deutsch), Russian (ru), and simple English (simple).

]
]
]
]

Interwiki link

Description What you type What it looks like

Linking to a page on another wiki in English.

All of these forms lead to the URL https://en.wiktionary.org/hello.

Simple link.

Without prefix.

Named link.

]

]

]

Wiktionary:hello

hello

Wiktionary definition of "hello"

Linking to a page on another wiki in another language.

All of these forms lead to the URL https://fr.wiktionary.org/bonjour.

Simple link.

Without prefix.

Named link.

]

]

]

Wiktionary:fr:bonjour

fr:bonjour

bonjour

Categories

  • To put an article in a category, place a link like ] into the article. As with interlanguage links, placing these links at the end of the article is recommended.
  • To link to a category page without putting the article into the category, use a colon prefix (":Category") in the link.
Description What you type What it looks like

Categorize an article.

]

Link to a category.

]

Category:Character sets

Without prefix.

]

Character sets

External links

  • Single-square brackets indicate an external link. Note the use of a space (not a pipe |) to separate the URL from the link text in a named link. Square brackets may be used as normal punctuation when not linking to anything – .
  • A URL must begin with a supported URI scheme: https:// (preferably) and http:// will be supported by all browsers; irc://, ircs://, ftp://, news://, mailto:, and gopher:// will require a plugin or an external application. IPv6 addresses in URLs are currently not supported.
  • A URL containing certain characters will display and link incorrectly unless those characters are percent encoded. For example, a space must be replaced by %20. Encoding can be achieved by:
  • Use the link button on the enhanced editing toolbar to encode the link; this tool will add the bracket markup and the linked text, which may not always be desirable.
  • Or manually encode the URL by replacing these characters:
space " ' , ; < > ? [ ]
%20 %22 %27 %2c %3b %3c %3e %3f %5b %5d
  • Or use the {{urlencode:}} magic word. See Help:Magic words in the MediaWiki documentation for more details.
Description What you type What it looks like

Named link with an external link icon

Misplaced Pages

Unnamed link

This should not be used in articles except in certain lists.

Bare URL

(Bad style)

use <nowiki></nowiki> to keep this bad style from showing

https://www.wikipedia.org

https://www.wikipedia.org

Link without arrow

(Not often used)

<span class="plainlinks"></span>

Misplaced Pages

Miscellaneous

Media link

  • To include links to non-image uploads such as sounds, use a "media" link. For images, see next section.
  • Some uploaded sounds are listed at Commons:Sound.
What you type What it looks like

]

Sound

Links directly into edit mode

  • These create links that directly go to the edit or view source tab. For example, to create links to the edit tab for this page, either of the following works:
Description What you type What it looks like

Using the {{fullurl}} template

edit

Using the {{Edit}} template

{{edit}}

edit

Links partially italicized

  • Linking to a page with a title containing words that are usually italicized, such as the Hindenburg disaster article.
What you type What it looks like

]

Hindenburg disaster

Musical notation

Main page: Help:Score

Musical notation is added by using the <score>...</score> extension HTML-like tag. For example:

Markup Renders as
<score>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score>
\relative c' { fis d fis a d f e d c cis d e a g f ees }

Images

Main pages: Help:Visual file markup and Misplaced Pages:Images

Only images that have been uploaded to Misplaced Pages or Wikimedia Commons can be used. To upload images, use the Commons upload wizard for photos you have taken, and the Misplaced Pages upload page if there may be copyright issues. You can find the uploaded image on the image list.

See the Misplaced Pages's image use policy for the policy used on Misplaced Pages.

For further help on images, including some more versatile abilities, see the picture tutorial and extended image syntax.

What you type What it looks like Notes
The image name, the word thumb then the caption : 
]
The image name, the word thumb then the caption :
Puzzle globe
Misplaced Pages logo
  • The thumb tag automatically allows the image to be enlarged and positions it (floats) automatically to the right of the page.
  • An enlarge icon is placed in the lower right corner.
  • See note below about adding an alt tag
  • This is the basic markup for most images


A picture: ]
A picture:
  • The picture name alone places the image in the text, or on the next line if there is insufficient space.
  • Embedding the image in the text is only possible for very small images.
  • Embedding the image will affect the vertical formatting of text.
With alternative text: 
]
With alternative text:

Puzzle globe logo

  • Alternative text, used when the image is unavailable or when the image is loaded in a text-only browser, or when spoken aloud, is strongly encouraged. See Alternative text for images for help on choosing it.
With link: 
]
With link:
  • The link directs to the Misplaced Pages page, Misplaced Pages, instead of the image file page.
Forced to the centre of the page
using the ''frame'' tag (attribute), a ''centre'' tag and a caption: 
]
Forced to the centre of the page using the frame tag (attribute), a centre tag and a caption:
Puzzle globe
Misplaced Pages logo
  • The frame tag automatically floats the image right.
  • The frame tag is only of use with very small images or ones using the px tag
  • The attributes left, center or centre override this, and places the image to the left or the centre of the page.
  • The last parameter is the caption that appears below the image.
Forced to the left side of the page
using the ''thumb'' attribute, the ''left'' attribute  and a caption: 
]
Forced to the left side of the page using the thumb attribute, the left attribute and a caption:
Puzzle globe
Misplaced Pages logo
  • The thumb tag automatically floats the image right.
  • An enlarge icon is placed in the lower right corner.
  • The attributes left, center or centre override this, and places the image to the left or the centre of the page.
Forced to the right side of the page
''without'' a caption: 
]
Forced to the right side of the page without a caption:
Misplaced Pages encyclopedia
Misplaced Pages encyclopedia
  • Captions are only displayed when the thumb or frame attributes are present
  • The picture tutorial explains more options.
A picture resized to 50 pixels... 
]
A picture resized to 50 pixels width...

Misplaced Pages encyclopedia

  • The picture tutorial explains more options.
  • Sizing in pixels is deprecated and should be used very sparingly.
  • There is an upright attribute that should be used instead. These tags are optimised for both laptop and mobile phone screens.
Linking directly to the description page of an image: 
]
Linking directly to the description page of an image:

File:wiki.png

  • Clicking on an image displayed normally on a page also leads to the description page.
Linking directly to an image without displaying it: 
]
Linking directly to an image without displaying it:

Image of jigsaw globe

  • To include links to images shown as links instead of drawn on the page, use a "media" link.
Example: 
<div style="display: inline; width: 220px; float: right;">
]] </div>

Example:

Misplaced Pages encyclopedia
  • Using the span or div elements to separate images from text (note that this may allow images to cover text).
Example:
{| style="text-align: right;"
|-
|
]
|-
|
]
|-
|
]
|}

Example:

  • Using wiki markup to make a table in which to place a vertical column of images (this helps edit links match headers, especially in Firefox browsers).

Tables

Main page: Help:Table See also: Misplaced Pages:Manual of Style/Tables § Appropriate

There are two ways to build tables:

  • Using specific wiki markup: (see Help:Table).
  • Using HTML elements: <table>, <tr>, <td> or <th>.

Columns

Main page: Help:Columns

Use {{colbegin}} and {{colend}} templates to produce columns.

References and citing sources

Main pages: Misplaced Pages:Citing sources and Help:Footnotes See also: APA style, Chicago style, Harvard style, and MLA style

Making a reference citing a printed or online source can be accomplished by using the <ref> wiki markup tags. Inside these tags details about the reference are added.

Details about the citation can be provided using a structure provided by various templates; the table below lists some typical citation components.

What it's for What you type
To create the reference <ref name="reference name">add_template_name_here</ref>
To cite a book {{cite book}}
To cite a web source {{cite web}}
Book ISBN |isbn=0-4397-0818-4 (ISBN of the book)
Web URL |url=https://www.wikipedia.org
Title |title=title of source
Author |author=authors, use commas for multiple
First name |first=first name
Last name |last=last name
Location |location=location of publisher
Publisher |publisher=who published the source
Date |date=2007-09-21 (date of source)
Year |year=year of source
Accessed date |access-date=2008-12-25 (only if url= is included)
A complete reference tag <ref name="Wiki markup">{{cite web |url=https://en.wikipedia.org/Help:Wiki_markup |title=Help:Wiki markup |publisher=Wikimedia Foundation}}</ref>
Referencing this again <ref name="Wiki markup" />
Citation needed {{Citation needed|{{subst:DATE}}}}

Templates and transcluding pages

Main page: Misplaced Pages:Transclusion See also: Help:Template § Noinclude, includeonly, and onlyinclude

Examples for templates: {{pad|...}}, {{math|...}}, {{as of|...}}, {{edit}}

Templates are segments of wiki markup that are meant to be copied automatically ("transcluded") into a page. They are specified by putting the template's name in {{double braces}}. Most templates are pages in the Template namespace, but it is possible to transclude mainspace pages (articles) by using {{:colon and double braces}}.

There are three pairs of tags that can be used in wikitext to control how transclusion affects parts of a template or article. They determine whether or not wikitext renders, either in its own article, which we will call "here", or in another article where it is transcluded, which we will call "there".

  • <noinclude>: the content will not be rendered there. These tags have no effect here.
  • <includeonly>: the content will render only there, and will not render here (like invisible ink made visible by means of transclusion).
  • <onlyinclude>: the content will render here and will render there, but it will only render there what is between these tags.

There can be several such section "elements". Also, they can be nested. All possible renderings are achievable. For example, to render there one or more sections of the page here use <onlyinclude> tags. To append text there, wrap the addition in <includeonly> tags before, within, or after the section. To omit portions of the section, nest <noinclude> tags within it.

If a page is transcluded without transclusion markup, it may cause an unintentional categorization. Any page transcluding it will contain the same category as the original page. Wrap the category markup with <noinclude> tags to prevent incorrect categorization. Some templates take parameters, as well, which you separate with the pipe character |.

What you type What it looks like
{{Transclusion demo}}

This text comes from the page named Template:Transclusion demo. It has been transcluded into this page.

{{Help:Transclusion demo}}

This transclusion demo is a little bit of text from the page Help:Transclusion demo to be included into any file.

This template takes two parameters,
and creates underlined text with a
hover box for many modern browsers
supporting CSS:
{{Tooltip|Hover your mouse over this text
|This is the hover text}}
Go to this page to see the Tooltip
template itself: {{tl|Tooltip}}

This template takes two parameters, and creates underlined text with a hover box for many modern browsers supporting CSS:

Hover your mouse over this text

Go to this page to see the Tooltip template itself: {{Tooltip}}

Talk and project pages

These are likely to be helpful on talk and project pages.

Signing comments

  • The tilde character (~) is used when signing a comment on a talk page. Your username provides a link to your user page.
Description What you type What it looks like

You should sign your comments by appending four tildes to the comment, which adds your user name plus date/time.

~~~~

Username (talk) 19:05, 28 December 2024 (UTC)

Adding three tildes will add just your user name.

~~~

Username (talk)

Adding five tildes gives the date/time alone.

~~~~~

19:05, 28 December 2024 (UTC)

Linking to old revisions of pages, diffs, and specific history pages

  • The external link function is mainly used for these. Open an old revision or diff, and copy the URL from the address bar, pasting it where you want it.
What you type What it looks like

Diff between revisions 330349143 and 330350877

  • You can also use an internal diff link. Unlike the template {{diff}}, this kind of link can even be used in edit summaries.
What you type What it looks like

]

Diff between revisions 330349143 and 330350877

  • If the diff intended to be shown is between an immediately previous revision, the first parameter can be dropped.
What you type What it looks like

]

Diff between revisions 330349143 and 330350877

  • For an old revision, you can also use a permalink. Though here only the main text is guaranteed to be retained (images and templates will be shown as they are today, not as they were at the time).
What you type What it looks like

]

Revision 330350877

What links here, and recent changes linked

  • The following markup can be used. For example, for the article Beetroot:
What you type What it looks like

]

Special:WhatLinksHere/Beetroot

]

Special:RecentChangesLinked/Beetroot

User edits

Description What you type What it looks like
Username (registered users). ] Special:Contributions/UserName
IPv4 address (unregistered users). ] Special:Contributions/192.0.2.0
IPv6 address (unregistered users). ] Special:Contributions/2001:0db8:0000:0000:0000:ff00:0042:8329

Coloring and highlighting text

What you type What it looks like

I will change the color in {{color|blue|the middle part of}} this sentence.

I will change the color in the middle part of this sentence.

This is how to {{Font color||yellow|highlight part of a sentence}}.

This is how to highlight part of a sentence.


Example text

The {{xt}} family of templates can be used to highlight example text. These templates do not work in mainspace—that is, in regular articles—they are intended for use on project pages (such as Misplaced Pages:Manual of Style), help pages, and user pages.

What you type What you get
This is {{xt|a correct example}} for comparison {{tick}} This is a correct example for comparison checkY
This is {{!xt|an incorrect example}} for contrast {{cross}} This is an incorrect example for contrast ☒N
This is {{mxt|in monospace}} for comparison This is in monospace for comparison
This is {{!mxt|in monospace}} for contrast This is in monospace for contrast
This is {{bxt|in bold}} for comparison This is in bold for comparison
This is {{!bxt|in bold}} for contrast This is in bold for contrast

Show deleted or inserted text

Further information: Misplaced Pages:Talk page guidelines § Editing own comments
  • When editing regular Misplaced Pages articles, just make your changes, and do not mark them up in any special way, except when the article itself discusses deleted or inserted content, such as an amendment to a statute:
    • to indicate deleted content, use <del>...</del>
    • to indicate inserted content, use <ins>...</ins>
  • This also applies to changing one's own talk page comments.
What you type What it looks like

You can <del>indicate deleted material</del> and <ins>inserted material</ins>.

You can indicate deleted material and inserted material.

Strikethrough

See also: Help:HTML in wikitext § s

The {{Strikethrough}} template marks up a span of text with the <s>...</s> tag. This is usually rendered visually by drawing a horizontal line through it. Outside of articles, it can be used to mark something as no longer accurate or relevant without removing it from view. Do not use it, however, to indicate document edits. For that, use the <del>...</del> tag instead. See § Show deleted or inserted text for details.

What you type What you get
This is {{Strikethrough|an obsolete stretch of text}} for comparison This is an obsolete stretch of text for comparison

Limiting formatting / escaping wiki markup

A few different kinds of formatting will tell the wiki to display things as you typed them – what you see is what you get!

What you type What it looks like
'''&lt;nowiki&gt; tag:'''
<nowiki>
The <nowiki> tag ignores ]
''markup''. It reformats text by
removing newlines and    multiple
spaces.       It still interprets
characters specified by
&amp;name;: &rarr;
</nowiki>

<nowiki> tag:

The <nowiki> tag ignores ] ''markup''. It reformats text by removing newlines and multiple spaces. It still interprets characters specified by &name;: →

'''&lt;pre&gt; tag:'''
<pre>The &lt;pre&gt; tag ignores ]
''markup'' as does the &lt;nowiki&gt;
tag. Additionally, &lt;pre&gt; displays
in a mono-spaced font, and does
not  reformat    text    spaces.
It still interprets special
characters: &rarr;</pre>

<pre> tag:

The <pre> tag ignores ]
''markup'' as does the <nowiki>
tag. Additionally, <pre> displays
in a mono-spaced font, and does
not  reformat    text    spaces.
It still interprets special
characters: →
''':'''
Single square brackets holding
 are
preserved, but single square
brackets containing a URL are
treated as being an external
.

:

Single square brackets holding are preserved, but single square brackets containing a URL are treated as being an external Web link.

'''Leading space:'''
Leading spaces are another way
to preserve formatting.
 Putting a space at the
 beginning of each line
 stops the text   from
 being reformatted.
 It still interprets ]
 ''markup'' and special characters: &amp;

Leading space:

Leading spaces are another way to preserve formatting.

Putting a space at the
beginning of each line
stops the text   from
being reformatted.
It still interprets wiki
markup and special characters: →

Nowiki

"WP:NOWIKI" redirects here. For the essay about the name "Wiki", see Misplaced Pages:Don't abbreviate "Misplaced Pages" as "Wiki"! Shortcuts
<nowiki>...</nowiki> (wiki markup contained between these two tags is displayed as normal text)
<nowiki /> (wiki markup that is interrupted by this tag is displayed as normal text, as detailed in examples below)

These two kinds of nowiki operate in different ways, but both neutralize the rendering of wiki markup as shown in the examples below. For example, the characters that have wiki markup meaning at the beginning of a line (*, #, ; and :) can be rendered in normal text. Editors can normalize the font of characters trailing a wikilink, which would otherwise appear in the wikilink font. And newlines added to wikitext for readability can be ignored.

Note to template editors: tag <nowiki> works only on its source page, not the target.

Markup Renders as
# Ordered list

  1. Ordered list
<nowiki /># Ordered list

# Ordered list

A ]second.

A micro-second.

A ]<nowiki />second.

A micro-second.

a<nowiki>
</nowiki>b

a b

'<nowiki />'Italics' markup'<nowiki />'

''Italics' markup''

<nowiki>]</nowiki>

]

<nowiki><!-- revealed --></nowiki>

<!-- revealed -->

The rest of the section consists of simple, live examples showing how a single nowiki tag escapes entire linkage structures, beyond ] and {{template}}:

]
{{ pagename | parameter }}
]
{{ pagename | ] }}
{{ pagename | {{ pagename }} }}

Unless you use the two "balanced" nowiki tags, troubleshooting strip marker errors and template parameter-handling inconsistencies is a risk. Also, a rendering error may arise when two ] square brackets are on the same line, or two {{...}} curly brackets are in the same section, but only when the two have the nowiki markup placed inconsistently.

Displaying wikilinks

(These are all live examples.)

Markup Renders as
]
]
]
]
<nowiki />]

page name
]
]
]
]

For nested structures, escaping an inner structure escapes its outer structure too.

Markup Renders as
]
]
]
]

wp: pagename
]
]
]

For two, first pipes, two nowiki tags are required:

Markup Renders as
]
]
&lt;nowiki>] &lt;/nowiki>

label
]
]

Displaying template calls

See also: Template:tl

For templates, put nowiki before the first pipe. If a parameter has a wikilink, put it in that, an inmost position.

Markup Renders as
{<nowiki />{ val | u=&gt; ] | 49082 }}
{{<nowiki /> val | u=&gt; ] | 49082 }}
{{ val <nowiki />| u=&gt; ] | 49082 }}
{{ val | u= &gt; ] | 49082 }<nowiki />}
{{ val | u= &gt; <nowiki />] | 49082 }}

{{ val | u=> ms | 49082 }}
{{ val | u= > ms | 49082 }}
{{ val | u=> ms | 49082 }}
{{ val | u=> ms | 49082 }}
{{ val | u=> ] | 49082 }} Green tickY

Displaying magic words

Further information: Help:Magic words and Help:Parser function

For input parameters, {{{1}}}, {{{2}}}, just write them out, unless they have a default (which goes behind their pipe): {{<nowiki />{1|default}}} → {{{1|default}}}

For a parser function nowiki goes between bracketing-pair characters, or anywhere before the : colon.

Markup Renders as
{{ #ifeq: inYes | inYes | outYes | outNo }}
{<nowiki />{ #ifeq: inYes | inYes | outYes | outNo }}
{{<nowiki /> #ifeq: inYes | inYes | outYes | outNo }}
{{ #ifeq<nowiki />: inYes | inYes | outYes | outNo }}
{{ #ifeq: inYes | inYes | outYes | outNo }<nowiki />}

outYes
{{ #ifeq: inYes | inYes | outYes | outNo }}
{{ #ifeq: inYes | inYes | outYes | outNo }}
{{ #ifeq: inYes | inYes | outYes | outNo }}
{{ #ifeq: inYes | inYes | outYes | outNo }}

Behavioral switches expect the tag anywhere:

Markup Renders as
 1. __HIDDENCAT__
 2. __HIDDENCAT<nowiki />__
1.
2. __HIDDENCAT__

Displaying tags

Tags do not display; they are just markup. If you want them to, insert <nowiki /> after an < opening angle bracket; it goes only in the very front. Opening tags and closing tags must be treated separately.

Markup Renders as
<span style=color:blue> Blue </span>
<<nowiki />span style=color:blue> Blue <<nowiki />/span>
<section end=la<nowiki />bel /> 
<<nowiki />section end=label />

Blue
<span style=color:blue> Blue </span>
bel /> ☒N
<section end=label /> checkY

Use template {{tag}} instead of nowiki tags to display parser tags:

Character entities, nowiki cannot escape. To escape HTML or special character entities, replace & with &amp;. For example, &amp;lt;&lt;

To display a nowiki tag, you can (1) use {{tag}}, (2) replace the < left angle bracket with its HTML character entity, or (3) nest nowiki tags in each other:

Markup Renders as
{{ tag | nowiki }}
<code>&amp;lt; nowiki>...&amp;lt;/ nowiki ></code>
<code><<nowiki />nowiki>...<<nowiki />/ nowiki ></code>

<nowiki>...</ nowiki >
< nowiki>...</ nowiki >
< nowiki>...</ nowiki >

{{ tag | nowiki | s }}
<code>&amp;lt; nowiki /></code>
<code>&lt;&lt;nowiki /> nowiki /></code>
<code>&lt;nowiki>&lt; nowiki />&lt;/nowiki></code>

<nowiki />
< nowiki />
< nowiki />
< nowiki />

Nowiki tags do not otherwise nest, so it is the second and fourth that displays:

Markup Renders as
1&lt;nowiki>2&lt;nowiki>3</nowiki>4</nowiki>
&lt;nowiki>{{!}}&lt;nowiki></nowiki>{{!}}</nowiki>

12<nowiki>34</nowiki>       second and fourth
{{!}}<nowiki>|</nowiki>

These simply scan from left to right. The paired tags cannot overlap, because the very first pair-match nullifies any intervening tags inside. Unbalanced tags always display.

Nowiki tags do not display table markup, use <pre>...</pre>.

Pre

Shortcut

<pre> is a parser tag that emulates the HTML <pre> tag. It defines preformatted text that is displayed in a fixed-width font and is enclosed in a dashed box. HTML-like and wiki markup tags are escaped, spaces and line breaks are preserved, but HTML elements are parsed.

<pre> examples
Markup Renders as
<pre><!--Comment-->
] markup &amp;</pre>
<!--Comment-->
] markup &amp;

As <pre> is a parser tag, it escapes wikitext and HTML tags. This can be prevented with the use of <includeonly></includeonly> within the <pre>, making it act more like its HTML equivalent:

<pre> with <includeonly></includeonly> example
Markup Renders as
<pre<includeonly></includeonly>><!--Comment-->
] markup &amp;</pre>
wiki markup &

Invisible HTML <pre> tags can also be inserted by preceding text with a space character, like:

wiki markup &

Alternatively, consider using {{pre}} template or <syntaxhighlight lang="text">...</syntaxhighlight>.

Invisible text (comments)

See also: Help:Hidden text

It's uncommon – but on occasion acceptable for notes to other editors – to add a hidden comment within the text of an article. These comments are visible only when editing or viewing the source of a page. Most comments should go on the appropriate Talk page. The format is to surround the hidden text with "<!--" and "-->" and may cover several lines, e.g.:

<!-- An example of hidden comments
 This won't be visible except in "edit" mode. -->

Another way to include a comment in the wiki markup uses the {{Void}} template, which can be abbreviated as {{}}. This template "expands" to the empty string, generating no HTML output; it is visible only to people editing the wiki source. Thus {{|A lengthy comment here}} operates similarly to the comment <!-- A lengthy comment here -->. The main difference is that the template version can be nested, while attempting to nest HTML comments produces odd results.

Variables

See also: Help:Magic words § Variables
Code Effect Notes
{{CURRENTWEEK}} 52
{{CURRENTDOW}} 6

Monday = 1, Tuesday = 2, etc., but Sunday = 0

{{CURRENTMONTH}} 12
{{CURRENTMONTHNAME}} December
{{CURRENTMONTHNAMEGEN}} December
{{CURRENTDAY}} 28
{{CURRENTDAYNAME}} Saturday
{{CURRENTYEAR}} 2024
{{CURRENTTIME}} 19:05
{{NUMBEROFARTICLES}} 6,931,314
{{NUMBEROFPAGES}} 62,150,848
{{NUMBEROFUSERS}} 48,471,039
{{PAGENAME}} Wikitext
{{NAMESPACE}} Help
{{REVISIONID}} -
{{REVISIONUSER}} Daask
{{localurl:pagename}} /Pagename
{{localurl:Misplaced Pages:Sandbox|action=edit}} /search/?title=Misplaced Pages:Sandbox&action=edit
{{fullurl:pagename}} //en.wikipedia.org/Pagename
{{fullurl:pagename|query_string}} //en.wikipedia.org/search/?title=Pagename&query_string
{{SERVER}} //en.wikipedia.org
{{ns:1}} Talk

{{ns:index}} e.g. {{ns:1}} → full name of namespace

{{SITENAME}} Misplaced Pages

{{NUMBEROFARTICLES}} is the number of pages in the main namespace that contain a link and are not a redirect. This includes full articles, stubs containing a link, and disambiguation pages.

{{CURRENTMONTHNAMEGEN}} is the genitive (possessive) grammatical form of the month name, as used in some languages but not in English; {{CURRENTMONTHNAME}} is the nominative (subject) form, as usually seen in English.

In languages where it makes a difference, you can use constructs like {{grammar:case|word}} to convert a word from the nominative case to some other case. For example, {{grammar:genitive|{{CURRENTMONTHNAME}}}} means the same as {{CURRENTMONTHNAMEGEN}}.

HTML

Main page: Help:HTML in wikitext

Many HTML tags can be used in wiki markup. You can check your HTML by using markup validation.

Common templates

Quick templates

Images

]

Cite web

<ref>{{cite web
 |url= 
 |title= 
 |author= 
 |date= 
 |website= 
 |publisher= 
 |access-date= 
}}</ref>

Cite journal

<ref>{{cite journal
 |last1= 
 |first1= 
 |last2= 
 |first2= 
 |date= 
 |title= 
 |journal= 
 |volume= 
 |issue= 
 |pages= 
 |publisher= 
 |doi= 
 |url= 
 |access-date= 
}}</ref>

Cite book (short)

<ref>{{cite book
 |last= 
 |first= 
 |author-link= 
 |title= 
 |publisher= 
 |series= 
 |date=  
 |doi= 
 |isbn= 
}}</ref>

Cite book (extended)

<ref>{{cite book
 |last1        = 
 |first1       = 
 |last2        = 
 |first2       = 
 |author-link1 = 
 |author-link2 = 
 |editor       = 
 |title        = 
 |trans-title  = 
 |url          = 
 |access-date  = 
 |edition      = 
 |series       = 
 |volume       = 
 |date         = 
 |publisher    = 
 |location     = 
 |isbn         = 
 |doi          = 
 |page         = 
 |pages        = 
 |chapter      = 
}}</ref>

Metric conversions

Single input:
{{convert|original_value|original_unit|conversion_unit|abbr=on}}
Range of values:
{{convert|orig_val1|range|orig_val2|original_unit|conversion_unit|abbr=on}}
Examples:
{{convert|60|and|170|kg|lb|abbr=on}}
{{convert|18|°C|°F}}
{{convert|3.21|kg|lb}}

Variables

Code Effect
{{CURRENTWEEK}} 52
{{CURRENTDOW}} 6
{{CURRENTMONTH}} 12
{{CURRENTMONTHNAME}} December
{{CURRENTMONTHNAMEGEN}} December
{{CURRENTDAY}} 28
{{CURRENTDAYNAME}} Saturday
{{CURRENTYEAR}} 2024
{{CURRENTTIME}} 19:05
{{NUMBEROFARTICLES}} 6,931,314
{{NUMBEROFPAGES}} 62,150,848
{{NUMBEROFUSERS}} 48,471,039
{{PAGENAME}} Wikitext
{{NAMESPACE}} Help
{{REVISIONID}} -
{{REVISIONUSER}} Daask
{{localurl:pagename}} /Pagename
{{localurl:Misplaced Pages:Sandbox|action=edit}} /search/?title=Misplaced Pages:Sandbox&action=edit
{{fullurl:pagename}} //en.wikipedia.org/Pagename
{{fullurl:pagename|query_string}} //en.wikipedia.org/search/?title=Pagename&query_string
{{SERVER}} //en.wikipedia.org
{{ns:index}} e.g. '{{ns:1}}' fullname of namespace e.g 'Talk'
{{SITENAME}} Misplaced Pages

Recalling named reference

<ref name="NAMEOFREF" />

Quotes

{{blockquote |text= |sign= }}

Blockquotes

<blockquote>
<p>QUOTED PARAGRAPH</p>
<p>NAME, SOURCE, REFERENCE</p>
</blockquote>

About

(This page is about USE1. For other uses, see About (disambiguation).)
{{About|USE1}}
(This page is about USE1. For other uses, see PAGE2.)
{{About|USE1||PAGE2}}
(This page is about USE1. For USE2, see PAGE2.)
{{About|USE1|USE2|PAGE2}}
(This page is about USE1. For USE2, see PAGE2. For USE3, see PAGE3. For USE4, see PAGE4. For USE5, see PAGE5.)
{{About|USE1|USE2|PAGE2|USE3|PAGE3|USE4|PAGE4|USE5|PAGE5}}

Tables (borderless)

{|
|-
! scope="col" |COLUMN1
! scope="col" |COLUMN2
|-
|ROW1
|ROW1/COL2
|-
|ROW2
|ROW2/COL2
|}

Tables (wikitable)

{| class="wikitable"
|-
! scope="col" |COLUMN1
! scope="col" |COLUMN2
|-
|ROW1
|ROW1/COL2
|-
|ROW2
|ROW2/COL2
|}

Collapsible tables (Default: collapsed)

{| class="wikitable mw-collapsible mw-collapsed" style="text-align: left;margin:0px;"
|- 
! style="width:20em;" |COLUMN1
! style="width:20em;" |COLUMN2
|- 
|ROW1
|ROW1/COL2
|-
|ROW2
|ROW2/COL2
|-
|}

Columns

{{col-begin|width=100%}}
{{col-break|width=}} 
{{col-end}}

Interwiki links

Wiki Shortcut
Wikimedia Commons ]
Misplaced Pages ]
Wiktionary ]
Wikibooks ]
Wikisource ]
Wikispecies ]
Wikiversity ]
Metawiki ]
MediaWiki ]

Vandalism response templates

 * {{subst:uw-vandalism1|PageName}} ~~~~ (unintentional vandalism/test)
 * {{subst:uw-delete1|PageName}} ~~~~ (unintentional removal of content)
 * {{subst:uw-vandalism2|PageName}} ~~~~ (suitable for intentional nonsense or disruption)
 * {{subst:uw-delete2|PageName}} ~~~~ (variant for removal of content)
 * {{subst:uw-vandalism3|PageName}} ~~~~ ("please stop" for use after level 2 warning)
 * {{subst:uw-delete3|PageName}} ~~~~ (please stop removing content)
 * {{subst:uw-vandalism4|PageName}} ~~~~ (last warning for vandalism)
 * {{subst:uw-delete4|PageName}} ~~~~ (last warning for removing content)
 * {{subst:uw-vandalism4im|PageName}} ~~~~ (only warning; for severe or grotesque vandalism only)
 * {{subst:uw-delete4im|PageName}} ~~~~ (only warning; for many blankings in a short period of time)

Page citations

{{rp|page=}}

Notes

  1. Misplaced Pages is an encyclopedia that uses wikitext—wikitext is not named after Misplaced Pages.
  2. The version of LaTeX used is a subset of AMS-LaTeX markup; see Help:Displaying a formula for details.

See also

Help desk

See the 'Coding wiki markup' section of the Help navigation navbox below for additional links.

Misplaced Pages directories and indexes
Administration
pages
Protocols
Assistance
The community
MediaWiki
Locutions
Encyclopedia
proper
Types
Featured, good
Topics
LOC, bios, times
Indexes
Searching
Misplaced Pages editor navigation - (Search)
Misplaced Pages key policies and guidelines (?)
Content (?)
P
G
Conduct (?)
P
G
Deletion (?)
P
Enforcement (?)
P
Editing (?)
P
G
Style
Classification
Project content (?)
G
WMF (?)
P
Manual of Style
Content
Formatting
Images
Layout
Lists
By topic area
Legal
Arts
Music
History
Regional
Religion
Science
Sports
Related guidelines
Search
Misplaced Pages accounts and governance
Unregistered (IP) users
Registered users
Account security
Blocks, bans, sanctions,
global actions
Related to accounts
User groups
and global user groups
Advanced user groups
Committees and related
Governance
Misplaced Pages community
For a listing of current collaborations, tasks, and news, see the Community portal.
For a listing of ongoing discussions and current requests, see the Dashboard.
General community
topics
Contents and grading
WikiProjects
and collaborations
Awards and feedback
Maintenance tasks
Administrators
and noticeboards
Content dispute
resolution
Other noticeboards
and assistance
Deletion
discussions
Elections and voting
Directories, indexes,
and summaries
Misplaced Pages essays (?)
Essays on building, editing, and deleting content
Philosophy
Article construction
Writing article content
Removing or
deleting content
Essays on civility
The basics
Philosophy
Dos
Don'ts
WikiRelations
Essays on notability
Humorous essays
About essays
About essays
Policies and guidelines
Misplaced Pages help pages

About Misplaced Pages (?)
Help for readers (?)
Contributing
to Misplaced Pages
 (?)
Getting started (?)
Dos and don'ts (?)
How-to pages and
information pages (?)
Coding (?)
Directories (?)
Missing Manual
Ask for help on your talk page (?)
Misplaced Pages referencing
Policies and guidelines
General advice
Citing sources
Inline citations
Help for beginners
Advanced help
Footnote templates
Find references
Citation tools
(External links)
Misplaced Pages technical help
Get personal technical help at the Teahouse, help desk, village pump (technical), talk pages or IRC.
General
technical help
Special
page
-related
Wikitext
Links and diffs
Media files: images,
videos and sounds
Other graphics
Templates and
Lua modules
Data structure
HTML and CSS
Customisation
and tools
Automated editing
Misplaced Pages templates
Main namespace
Other namespaces
All namespaces
Navboxes
with templates
Inline images
Help pages
Related topics
Search
Awards, decorations, and medals of Misplaced Pages
Awarded by co-founder Jimmy Wales
Awards by WikiProject
Barnstars and other personal awards
Awards by number of edits
See also

Peace dove Kindness Campaign

Useful links
Daily pages
Things to do
Resources
Policies /
Guidelines
Administrators
External links
Toolbox
Templates
Welcome
Vandalism
Content removal
Check
Dispute
Delete
Community
Protocols
Main
Stats
External
Misplaced Pages:Directories and indexes
Categories: