Epstein Files Full PDF

CLICK HERE
Technopedia Center
PMB University Brochure
Faculty of Engineering and Computer Science
S1 Informatics S1 Information Systems S1 Information Technology S1 Computer Engineering S1 Electrical Engineering S1 Civil Engineering

faculty of Economics and Business
S1 Management S1 Accountancy

Faculty of Letters and Educational Sciences
S1 English literature S1 English language education S1 Mathematics education S1 Sports Education
teknopedia

  • Registerasi
  • Brosur UTI
  • Kip Scholarship Information
  • Performance
Flag Counter
  1. World Encyclopedia
  2. Help:Wikitext - Wikipedia
Help:Wikitext - Wikipedia
Page semi-protected
From Wikipedia, the free encyclopedia
Wikipedia help page

For the encyclopedic section on wikitext, see Wiki § Editing.
"H:WT" redirects here. For the welcoming templates, see Wikipedia:Welcoming committee/Welcome templates.
  • Abbreviations
  • Edit summaries
  • Glossary
  • HTML
  • Shortcuts
  • Templates
  • Wikitext
  • Directory
This help page is a how-to guide.
It explains concepts or processes used by the Wikipedia community. It is not one of Wikipedia's policies or guidelines, and may reflect varying levels of consensus.
Shortcuts
  • H:WTH:WT
  • H:MARKUPH:MARKUP
  • H:WIKICODEH:WIKICODE
The instructions on this page mainly apply to editing wikitext using the source editor, and may not work with the VisualEditor. For guidance, see the VisualEditor user guide.
Please remove this notice if VisualEditor users are addressed in a way that makes it unnecessary.
Wikitext
  • Cheatsheet
  • All wikitext
  • Sound files
  • Visual files
  • Tables
  • Templates (quick guide)
  • HTML within wikitext
  • Pipe trick
  • v
  • t
  • e

Wikitext, also known as wiki markup or wikicode, is the markup language used by the MediaWiki software to format pages.[a]

To learn how to view and edit wikitext, and how to save changes, see Help:Editing. In most cases, markup can be copied and pasted without the need to write new code. A quick reference guide is available at Help:Cheatsheet.

In addition to wikitext, some HTML elements are also permitted for presentation formatting. For more details, see Help:HTML in wikitext.

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 Wikipedia: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 [edit] 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: MOS:HR

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


The four hyphens must appear at the beginning of a line.

The HTML equivalent is <hr />, which can be indented if required. (---- always starts at the left margin.)

The template {{Hr}} produces a similar rule but allows the thickness to be specified.

Table of contents

Further information: H: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:Wikipedia table of contents templates contains a number of specialized TOC templates.

Line breaks

Further information: Help:Line-break handling, Wikipedia:Line breaks usage, and Wikipedia: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, to avoid creating 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:

  • {{plainlist}} and {{unbulleted list}} both create an unbulleted list.

Indent text

Further information: WP:INDENT and Wikipedia: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: div and span, 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 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.

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 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.
{{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 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.

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
  • H:ULH:UL
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
  • H:OLH:OL
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
  • H:DLH:DL

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
  • H:POEMH: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 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. Note that these must be "straight" apostrophes; "curly" apostrophes (‘ and ’) will not work.

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 [[Help:Visual file markup#Caption|image caption]], 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.&nbsp;Smith or 400&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;

x1 x2 x3 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 [[hectare]] = 1 E+4 m&sup2;

ε0 = 8.85 × 10−12 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

  • See also Wikipedia:Mathematical symbols, WikiProject Mathematics and TeX.
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,[b] 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} {\displaystyle 2x\times 4y\div 6z+8-{\frac {y}{z^{2}}}=0}

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

sin ⁡ 2 π x + ln ⁡ e {\displaystyle \sin 2\pi 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 x2 ≥ 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!}}} {\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, [[Texas]] will be rendered as Texas. Optionally, you can use a vertical bar (|) to customize the link title. For example, typing [[Texas|Lone Star State]] 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/wiki/Public_transport, which is the Wikipedia 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 [[public transport]].

London has public transport.

Link to this page: "[[Help:Wikitext]]" 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 [[public transport|public transportation]].

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 (biology)|]]

kingdom

Automatically hide the comma and following text [[Seattle, Washington|]] Seattle

Automatically hide namespace

[[Wikipedia:Village pump|]]

Village pump

Or both

[[Wikipedia:Manual of Style (headings)|]]

Manual of Style

But this doesn't work for section links

[[Wikipedia:Manual of Style#Links|]]

[[Wikipedia:Manual of Style#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 [[public transport]]ation. Examples include [[bus]]es, [[taxicab]]s, and [[tram]]s.

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

Blending suppressed

A [[micro-]]<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

[[Wikipedia:Manual of Style#Italics]] is a link to a section within another page.

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

{{Section link|Wikipedia:Manual of Style#Italics}}, does the same, but nicer.

Wikipedia:Manual of Style § Italics using a template, does the same, but nicer.

[[#Links and URLs]] is a link to another section on the current page. [[#Links and URLs|Links and URLs]] 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.

[[Wikipedia:Manual of Style#Italics|Italics]] is a piped link to a section within another page.

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

Create a new page

  • To create a new page:
    1. Edit any page.
    2. Enter a redlink wikilink: [[page name]].
    3. Preview or save.
    4. Activate the link you just made. The new page will open for editing.
  • For more information, see starting an article and check out Wikipedia's naming conventions.
  • Please link to your new article 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 [[cardboard sandwiches]] doesn't exist yet.

The article about cardboard sandwiches doesn't exist yet.

Create an alias for a page

Main page: Help:Redirect
  • Create an alias for any page by creating a Redirect from one page name to another.
  • First create a new page whose page name is the name of the alias. That is the redirect.
  • On the first line of the new redirect page, use the syntax shown in the table below. For example, US is a redirect.
  • 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.
Description What you type

Redirect to an article

#REDIRECT [[United States]]

Redirect to a section

#REDIRECT [[United States#History]]

Link to another namespace

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

See the [[Wikipedia:Manual of Style]].

See the Wikipedia:Manual of Style.

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

Main pages: Help:Interlanguage links and Wikipedia: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: [[language code:Foreign title]].
  • 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".
  • NOTE: To create an inline link (a clickable link within the text) to any foreign language article, see Help:Interlanguage links#Inline interlanguage links and consider the usage notes.
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).

[[es:Plancton]]

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

[[fr:Plancton]]
[[de:Plankton]]
[[ru:Планктон]]
[[simple:Plankton]]

Interwiki link

  • Interwiki links link to any page on other wikis. Interwikimedia links link to other Wikimedia wikis.
  • Note that interwikimedia links use the internal link style, with double square brackets.
  • See Meta-Wiki:Interwiki map for the list of shortcuts; if the site you want to link to is not on the list, use an external link.
  • See also Wikipedia:Wikimedia sister projects.
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/wiki/hello.

Simple link.

Without prefix.

Named link.

[[Wiktionary:hello]]

[[Wiktionary:hello|]]

[[Wiktionary:hello|Wiktionary definition of "hello"]]

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/wiki/bonjour.

Simple link.

Without prefix.

Named link.

[[Wiktionary:fr:bonjour]]

[[Wiktionary:fr:bonjour|]]

[[Wiktionary:fr:bonjour|bonjour]]

Wiktionary:fr:bonjour

fr:bonjour

bonjour

Categories

  • To put an article in a category, place a link like [[Category:Example]] 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.

[[Category:Character sets]]

Link to a category.

[[:Category:Character sets]]

Category:Character sets

Without prefix.

[[:Category:Character sets|]]

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 – [like this].
  • 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.
  • See Wikipedia:External links for style issues, and Category:External link file type templates for indicating the file type of an external link with an icon.
Description What you type What it looks like

Named link with an external link icon

[https://www.wikipedia.org Wikipedia]

Wikipedia

Unnamed link

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

[https://www.wikipedia.org]

[1]

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">[https://www.wikipedia.org Wikipedia]</span>

Wikipedia

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

[[media:Classical guitar scale.ogg|Sound]]

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

[{{fullurl:Help:Wiki markup|action=edit}} edit]

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|''Hindenburg'' disaster]]

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 Wikipedia:Images

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

See the Wikipedia's image use policy for the policy used on Wikipedia.

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, and then the caption:
[[File:wiki.png|thumb|Wikipedia logo]]
The image name, the word thumb, and then the caption:
Puzzle globe
Wikipedia 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: [[File:wiki.png]]
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:
[[File:wiki.png|alt=Puzzle globe logo]]
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:
[[File:wiki.png|link=Wikipedia]]
With link:
  • The link directs to the Wikipedia page, Wikipedia, instead of the image file page.
Forced to the centre of the page
using the ''frame'' tag (attribute), a ''centre'' tag and a caption:
[[File:wiki.png|frame|centre|alt=Puzzle globe|Wikipedia logo]]
Forced to the centre of the page using the frame tag (attribute), a centre tag and a caption:
Puzzle globe
Wikipedia 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:
[[File:wiki.png|thumb|left|alt=Puzzle globe|Wikipedia logo]]
Forced to the left side of the page using the thumb attribute, the left attribute and a caption:
Puzzle globe
Wikipedia 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:
[[File:wiki.png|right|Wikipedia encyclopedia]]
Forced to the right side of the page without a caption:
Wikipedia encyclopedia
Wikipedia 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...
[[File:wiki.png|50 px|Wikipedia encyclopedia]]
A picture resized to 50 pixels width...

Wikipedia encyclopedia

  • The picture tutorial explains more options.
  • Sizing in pixels is deprecated and should be used very sparingly.
  • There is an upright parameter 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:
[[:File:wiki.png]]
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:
[[Media:wiki.png|Image of jigsaw globe]]
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;">
[[File:wiki.png|50 px|Wikipedia encyclopedia]][[File:wiki.png|50 px]] </div>

Example:

Wikipedia 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;"
|-
|
[[File:wiki.png|50 px]]
|-
|
[[File:wiki.png|50 px]]
|-
|
[[File:wiki.png|50 px]]
|}

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: Wikipedia: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: Wikipedia: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://teknopedia.ac.id/wiki/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: Wikipedia: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) 09:08, 2 March 2026 (UTC)

Adding three tildes will add just your user name.

~~~

Username (talk)

Adding five tildes gives the date/time alone.

~~~~~

09:08, 2 March 2026 (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

[https://teknopedia.ac.id/w/index.php?title=Help:Wiki_markup&diff=330350877&oldid=330349143 Diff between revisions 330349143 and 330350877]

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

[[Special:Diff/330349143/330350877|Diff between revisions 330349143 and 330350877]]

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

[[Special:Diff/330350877|Diff between revisions 330349143 and 330350877]]

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

[[Special:Permalink/330350877|Revision 330350877]]

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:WhatLinksHere/Beetroot

[[Special:RecentChangesLinked/Beetroot]]

Special:RecentChangesLinked/Beetroot

User edits

  • Link to a user's contributions page.
Description What you type What it looks like
Username (registered users). [[Special:Contributions/UserName]] Special:Contributions/UserName
IPv4 address (unregistered users). [[Special:Contributions/192.0.2.0]] Special:Contributions/192.0.2.0
IPv6 address (unregistered users). [[Special:Contributions/2001:0db8:0000:0000:0000:ff00:0042:8329]] Special:Contributions/2001:0db8:0000:0000:0000:ff00:0042:8329

Coloring and highlighting text

  • Using the {{Color}} and {{Font color}} templates:
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 Wikipedia: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 {{Xmark}} 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: Wikipedia:Talk page guidelines § Editing own comments
  • When editing regular Wikipedia 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 indicate <del>deleted</del> and <ins>inserted</ins> material.

You can indicate deleted and inserted material.

Strikethrough

See also: Help:HTML in wikitext § s

The {{Strikethrough}} template marks up an inline 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.

The {{Strikethrough}} template and <s>...</s> tag are for inline content only; to strike out a block of text, such as a multi-line talk page post, use either {{Strikethroughdiv}} or <div style="text-decoration: line-through"></div> to render the entire block with strikethrough markup.

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
This is {{Strikethroughdiv|{{ubl|an obsolete bulleted list|with two items}}}} for comparison This is
  • an obsolete bulleted list
  • with two items
for comparison

Limiting formatting and escaping wikitext

See also: Template:Escape template list

Several formatting methods in wikitext can force the wikitext to be displayed exactly as typed – essentially a "what you see is what you get" effect. These techniques are useful when you need to prevent wikitext from being interpreted by parser, such as when showing examples of wikitext nested in a template.

What you type What it looks like
'''&lt;nowiki&gt; tag:'''

<nowiki>
The <nowiki> tag ignores [[wiki]]
''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 [[wiki]] ''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 [[wiki]]
''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 [[wiki]]
''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: →
'''[Text without a URL]:'''

Single square brackets holding
[text without a HTTP URL] are
preserved, but single square
brackets containing a URL are
treated as being an external
[https://example.com/ Web link].

[Text without a URL]:

Single square brackets holding [text without a HTTP URL] 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 [[wiki]]
 ''markup'' and special characters: &rarr;

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 Wikipedia:Don't abbreviate "Wikipedia" as "Wiki"! For the Wikipedia language edition, see Norwegian Wikipedia.
Shortcuts
  • H:NOWIKIH:NOWIKI
  • WP:NOWIKIWP:NOWIKI

There are two types of nowiki markup, which operate in different ways:

  • The <nowiki>...</nowiki> tag pair encloses a section of wiki markup, which is then displayed as normal text.
  • The empty <nowiki /> tag interrupts the wiki markup and causes it to display as normal text.

Both forms 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 [[micro-]]second.

A micro-second.

A [[micro-]]<nowiki />second.

A micro-second.

a<nowiki>

</nowiki>b

a b

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

''Italics' markup''

<nowiki>[[Example]]</nowiki>

[[Example]]

<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 [[wikilink]] and {{template}}:

[[ fullpagename | label ]]
{{ pagename | parameter }}
[[fullpagename | {{ pagename }} ]]
{{ pagename | [[ fullpagename ]] }}
{{ 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
[[ wp:pagename | page name ]]
[<nowiki />[ wp:pagename | page name ]]
[[<nowiki /> wp:pagename | page name ]]
[[ wp:pagename <nowiki />| page name ]]
[[ wp:pagename | page name ]<nowiki />]

page name
[[ wp:pagename | page name ]]
[[ wp:pagename | page name ]]
[[ wp:pagename | page name ]]
[[wp:pagename | page name ]]

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

Markup Renders as
[[ wp: {{ 1x | pagename }} ]]
[[ wp: {<nowiki />{ 1x | pagename }} ]]
[[ wp: {{<nowiki /> 1x | pagename }} ]]
[[ wp: {{ 1x <nowiki />| pagename }} ]]

wp: pagename
[[ wp: {{ 1x | pagename }} ]]
[[ wp: {{ 1x | pagename }} ]]
[[ wp: {{ 1x | pagename }} ]]

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

Markup Renders as
[[ wp: pagename | {{ 1x | label }} ]]
[[ wp: pagename <nowiki />| {{ 1x <nowiki />| label }} ]]
&lt;nowiki>[[ wp: pagename | {{ 1x | label }} ]] &lt;/nowiki>

label
[[ wp: pagename | {{ 1x | label }} ]]
[[ wp: pagename | {{ 1x | 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; [[ms]] | 49082 }}
{{<nowiki /> val | u=&gt; [[ms]] | 49082 }}
{{ val <nowiki />| u=&gt; [[ms]] | 49082 }}
{{ val | u= &gt; [[ms]] | 49082 }<nowiki />}
{{ val | u= &gt; [[ ms ]<nowiki />] | 49082 }}

{{ val | u=> ms | 49082 }}
{{ val | u= > ms | 49082 }}
{{ val | u=> ms | 49082 }}
{{ val | u=> ms | 49082 }}
{{ val | u=> [[ ms ]] | 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
  • WP:PREWP:PRE

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

[[wiki]] markup &amp;</pre>
<!--Comment-->

[[wiki]] 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-->

[[wiki]] 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}} 10 Number of weeks since January 1 (January 1 can be in week 1; but only if it's a Monday, Tues, Wed, Thurs - if it's Friday, Sat or Sun, Jan 1 will be in week 52 or 53)[citation needed]
{{CURRENTDOW}} 1

0 =Sunday, 1 = Monday, 2 = Tuesday, ... 6 = Saturday

{{CURRENTMONTH}} 03
{{CURRENTMONTHNAME}} March The nominative (subject) form, as usually seen in English
{{CURRENTMONTHNAMEGEN}} March The genitive (possessive) grammatical form of the month name, as used in some languages but not in English
{{CURRENTDAY}} 2
{{CURRENTDAYNAME}} Monday
{{CURRENTYEAR}} 2026
{{CURRENTTIME}} 09:08
{{NUMBEROFARTICLES}} 7,145,239 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.
{{NUMBEROFPAGES}} 65,191,711
{{NUMBEROFUSERS}} 51,749,379
{{PAGENAME}} Wikitext
{{NAMESPACE}} Help
{{REVISIONID}} -
{{REVISIONUSER}} Jonesey95
{{localurl:pagename}} /wiki/Pagename
{{localurl:Wikipedia:Sandbox|action=edit}} /w/index.php?title=Wikipedia:Sandbox&action=edit
{{fullurl:pagename}} //en.wikipedia.org/wiki/Pagename
{{fullurl:pagename|query_string}} //en.wikipedia.org/w/index.php?title=Pagename&query_string
{{SERVER}} //en.wikipedia.org
{{ns:1}} Talk

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

{{SITENAME}} Wikipedia

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

  • v
  • t
  • e
Quick templates

Images

[[File: | thumb | upright | right | alt= | caption ]]

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}} 10
{{CURRENTWEEKDAY}} 1
{{CURRENTMONTH}} 03
{{CURRENTMONTHNAME}} March
{{CURRENTMONTHNAMEGEN}} March
{{CURRENTDAY}} 2
{{CURRENTDAYNAME}} Monday
{{CURRENTYEAR}} 2026
{{CURRENTTIME}} 09:08
{{NUMBEROFARTICLES}} 7,145,239
{{NUMBEROFPAGES}} 65,191,711
{{NUMBEROFUSERS}} 51,749,379
{{PAGENAME}} Wikitext
{{TALKPAGENAME}} Help talk:Wikitext
{{NAMESPACE}} Help
{{REVISIONID}} -
{{REVISIONUSER}} Jonesey95
{{localurl:pagename}} /wiki/Pagename
{{localurl:Wikipedia:Sandbox|action=edit}} /w/index.php?title=Wikipedia:Sandbox&action=edit
{{fullurl:pagename}} //en.wikipedia.org/wiki/Pagename
{{fullurl:pagename|action=history}} //en.wikipedia.org/w/index.php?title=Pagename&action=history
{{SERVER}} //en.wikipedia.org
{{ns:index}} e.g. '{{ns:1}}' fullname of namespace e.g 'Talk'
{{SITENAME}} Wikipedia

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 [[commons:]]
Wikipedia [[w:]]
Wiktionary [[wikt:]]
Wikibooks [[b:]]
Wikisource [[s:]]
Wikispecies [[species:]]
Wikiversity [[wv:]]
Metawiki [[m:]]
MediaWiki [[mw:]]

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. ^ Note the use of lowercase spelling for these terms; Wikipedia is an encyclopedia that uses wikitext — wikitext is not named after Wikipedia.
  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.

  • Wikipedia:User page design guide/Style
  • Wikipedia:Extended image syntax: advanced visual file markup.
  • Help:A quick guide to templates: an introduction to templates.
  • Help:Substitution: substitution is an alternative way of including templates than transclusion.
  • Help:Score: how to render musical scores.
  • Help:Displaying a formula: displaying mathematical formulae.
  • Editing Wikitext at Wikibooks.
  • Parsoid: MediaWiki application that allows for converting back and forth between wikitext and HTML.
  • {{Syntaxhighlight}}: template to show wrapped syntax-highlighted text.
  • Help:Displaying a formula: LaTeX and Chemistry notation
  • v
  • t
  • e
Wikipedia directories and indexes
Administration
pages
Protocols
  • Policies
  • Guidelines
  • Manual of Style
Assistance
  • Help directory
    • Menu
  • FAQs
  • Interactive help
  • Reader's index
  • Tips
    • Styletips
  • Tools
The community
  • Portal
  • Discussions
    • Noticeboards
  • Essays
  • Editor's index
  • Departments
    • Maintenance
  • AI resources
  • WikiProjects
MediaWiki
  • Wikitext
    • HTML
    • Templates
Locutions
  • Abbreviations
  • Edit summaries
  • Glossary
  • Shortcuts
Encyclopedia
proper
Types
  • Overviews
  • Outlines
  • Lists
  • Portals
  • Glossaries
  • Categories
  • Indices
Featured, good
  • Featured articles
    • Good articles
  • Featured lists
  • Featured pictures
  • Featured topics
    • Good topics
Topics
  • Current events
  • Reference
  • Culture
  • Geography
  • Health
  • History
  • Math
  • Nature
  • People
  • Philosophy
  • Religion
  • Society
  • Technology
LOC, bios, times
  • Academic disciplines
  • Anniversaries
    • Today
  • Sovereign states and dependent territories
    • Deaths this year
  • Timelines
    • Decades, centuries, and millennia
Indexes
  • A–Z index
  • Categories
  • Dewey Decimal classes
  • Library of Congress Classification
  • Spoken articles
Searching
  • v
  • t
  • e
Wikipedia editor navigation (Search)
  • v
  • t
  • e
Wikipedia key policies and guidelines (?)
  • Five pillars
    • Ignore all rules
Content (?)
P
  • Verifiability
  • No original research
  • Neutral point of view
  • What Wikipedia is not
  • Biographies of living persons
  • Copyright (Copyright violations)
  • Image use
  • Article titles
G
  • Notability
  • Autobiographies
  • Citing sources
  • Reliable sources
    • Medicine
  • Do not include copies of lengthy primary sources
  • Plagiarism
  • Do not create hoaxes
  • Fringe theories
  • Patent nonsense
  • External links
  • Writing articles with large language models
  • LLM-assisted translation
Conduct (?)
P
  • Civility
  • Consensus
  • Harassment
  • Vandalism
  • Ignore all rules
  • No personal attacks
  • Ownership of content
  • Edit warring
  • Dispute resolution
  • Sockpuppetry
  • No legal threats
  • Child protection
  • Paid-contribution disclosure
G
  • Assume good faith
  • Conflict of interest
  • Disruptive editing
  • Do not disrupt Wikipedia to illustrate a point
  • Etiquette
  • Gaming the system
  • Please do not bite the newcomers
  • Courtesy vanishing
  • Responding to threats of harm
  • Talk page guidelines
    • Signatures
Deletion (?)
P
  • Deletion policy
  • Proposed deletion
    • Biographies
  • Speedy deletion
  • Attack page
  • Oversight
  • Revision deletion
Enforcement (?)
P
  • Administrators
  • Banning
  • Blocking
  • Page protection
Editing (?)
P
  • Editing policy
G
  • Article size
    • Summary style
  • Be bold
  • Disambiguation
  • Hatnotes
  • Broad-concept article
  • Understandability
Style
  • Manual of Style
    • Contents
  • Accessibility
  • Dates and numbers
  • Images
  • Layout
  • Lead section
  • Linking
  • Lists
Classification
  • Categories, lists, and navigation templates
  • Categorization
  • Template namespace
Project content (?)
G
  • Project namespace
    • WikiProjects
  • User pages
    • User boxes
  • Shortcuts
  • Subpages
WMF (?)
P
  • Universal Code of Conduct
  • Terms of Use
  • List of policies
  • Friendly space policy
  • Licensing and copyright
  • Privacy policy
  • List of all policies and guidelines
    • P: List of policies
    • G: List of guidelines
  • Summaries of values and principles
  • v
  • t
  • e
Manual of Style
  • Overview
  • Contents
  • Tips
Content
  • Accessibility
  • Biography
  • Disambiguation pages
    • Organizing by subject area
  • Gender identity
  • Hidden text
  • Infoboxes
  • Linking
  • Self-references
  • Words to watch
Formatting
  • Abbreviations
  • Capitalization
  • Dates and numbers
  • Pronunciation
  • Spelling
  • Superscripts and subscripts
  • Text formatting
  • Titles of works
Images
  • Captions
  • Image placement
  • Icons
  • Images
Layout
  • Layout
  • Lead section
  • Tables
  • Trivia sections
Lists
  • Lists
  • Lists of works
  • Road junctions
  • Stand-alone lists
By topic area
Arts
  • Anime and manga
  • Comics
  • Film
  • Lyrics and poetry
  • Novels
  • Television
  • Video games
  • Visual arts
  • Writing about fiction
  • See also: WikiProject style advice
Music
  • Music
  • Music samples
  • Record charts
  • Stringed instruments
  • See also: WikiProject style advice
History
  • Blazons
  • Military history
  • See also: WikiProject style advice
Legal and cultural
  • Legal
  • Trademarks
  • See also: WikiProject style advice
Regional
  • Specific naming conventions
  • Canada
  • China (and Chinese)
  • France (and French)
  • Hawaii
  • India
  • Indonesia
  • Ireland
  • Japan
  • Korea
  • Malaysia
  • Pakistan
  • Philippines
  • Poland
  • Singapore
  • See also: WikiProject style advice
Religion and education
  • Islam
  • Latter Day Saints
  • See also: WikiProject style advice
Science and technology
  • Mathematics
  • Medicine
  • Chemistry
    • Compound classes
    • Chemicals
    • References and external links
    • Safety
    • Structure drawing
  • Computer science
  • Taxonomy
  • See also: WikiProject style advice
Sports
  • Cue sports
    • Snooker
  • See also: WikiProject style advice
Related guidelines
  • Article size
  • Article titles
  • Categories, lists, and navigation templates
  • Categorization
  • Hatnotes
  • Subpages
  • Understandability
Search
  • Category
  • v
  • t
  • e
Wikipedia accounts and governance
Unregistered users
  • Why create an account?
  • Create an account
  • Request an account
  • Unregistered editors are human too
  • IP addresses are not people
  • IP hopper
  • Temporary accounts
Registered users
  • New account
  • Logging in
    • Reset passwords
  • Username policy
    • Changing username
    • Usernames for administrator attention
  • Unified login or SUL
  • Alternate account
Account security
  • Password strength requirements
  • User account security
  • Personal security practices
  • Two-factor authentication
    • 2FA for AWB
  • Committed identity
  • On privacy, confidentiality and discretion
  • Compromised accounts
  • How to not get outed
Blocks, bans, sanctions,
global actions
  • Blocking policy
    • FAQ
    • Admin's guide
    • Tools
    • Autoblock
  • Appealing a block
    • Guide to appealing blocks
    • UTRS Unblock Ticket Request System
    • Unblock Wizard
  • Blocking IP addresses
    • Range blocks
    • IPv6
    • Open proxies
  • Banning policy
    • ArbCom appeals
  • Sanctions
    • Personal sanctions
    • General sanctions
    • Contentious topics and Log
    • Essay
  • Indef ≠ infinite
  • Long-term abuse
  • Standard offer
  • Global actions
Related to accounts
  • Sockpuppetry
  • Single-purpose account
  • Sleeper account
  • Spam-only account
  • Vandalism-only account
  • Wikibreak
    • Enforcer
  • Retiring
    • Courtesy vanishing
  • Clean start
    • Quiet return
  • Account deletion
User groups
and global user groups
  • Requests for permissions
    • Admin instructions
    • Admin guide
  • Account creator
    • PERM
  • (Auto) confirmed
    • PERM
  • Autopatrolled
    • PERM
  • AutoWikiBrowser
    • PERM
  • Bot
    • Request
  • Edit filter helper
    • Request
  • Event coordinator
    • PERM
  • Extended confirmed
    • PERM
  • File mover
    • PERM
  • IP block exempt
    • Request
  • Mass message sender
    • PERM
  • New page reviewer
    • PERM
  • Page mover
    • PERM
  • Pending changes reviewer
    • PERM
  • Rollback
    • PERM
  • Template editor
    • PERM
  • Temporary account IP viewer
    • PERM
  • Global rights policy
    • Volunteer Response Team
Advanced user groups
  • Administrator
    • RfA
  • Bureaucrat
    • RfB
  • CheckUser and Oversight
    • Request
  • Edit filter manager
    • Request
  • Interface administrator
    • Request
  • Founder
  • Importer
  • Researcher
Committees and related
  • Arbitration Committee
  • Bot approvals group
  • Functionaries
  • Clerks
    • SPI clerks
    • ArbCom clerks
Governance
  • Administration
    • FAQ
  • AI
  • Formal organization
  • Editorial oversight and control
  • Quality control
  • Wikimedia Foundation
    • Board
    • Founder's seat
    • Meta-Wiki
    • Proposals
  • WikiProjects
  • Elections
  • Policies and guidelines
  • Petitions
  • Noticeboards
  • Consensus
  • Dispute resolution
  • Reforms
  • v
  • t
  • e
Wikipedia 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
  • Administration
  • News
    • The Signpost
    • Goings-on
    • In the media
  • Meetups
  • Mailing lists
  • Wikipedians
  • Statistics
  • The Wikipedia Library
  • Centralized discussion
  • Village pump
    • Idea lab
    • Policy
    • Proposals
    • Technical
    • Miscellaneous
    • WMF
  • Holidays
  • Bots
Contents and grading
  • Requested articles
  • Most-wanted articles
  • Images needing articles
  • Articles needing images
  • Articles for creation
    • WP:AFC/R
    • WP:AFC/C
    • Creating articles
    • Help
  • Vital articles
  • Articles for improvement
  • Peer review
  • Good article nominations
  • Featured article candidates
    • Lists
    • Pictures
    • Topics
  • Article translation
    • Pages
  • Main Page
    • Errors
WikiProjects
and collaborations
  • Directory
  • Culture and the arts
  • Geographical
  • History and society
  • Science, technology and engineering
  • Wikipedia assistance and tasks
  • Patrols
    • Recent changes
  • Counter-Vandalism Unit
  • Accessibility
  • Organizations category
Awards and feedback
  • Reward board
  • Contests
  • A nice cup of tea and a sit down
  • Charitableness
  • WikiLove
    • Compliment before criticism
    • Kindness Campaign
  • Thanks!
Maintenance tasks
  • Task Center
    • Open tasks
  • Backlog
    • Category
    • Admin category
  • Edit requests
    • Category
  • Database reports
  • Category tracker
  • Dusty articles
  • Special pages
    • New pages
    • Recent changes
  • Controversial issues
Administrators
and noticeboards
  • Administrators' noticeboard
    • Incidents
    • Edit warring
    • Vandalism
  • Admin dashboard
  • Admin requests
    • Closure
    • Page protection
    • User permissions
    • Sockpuppets
    • Open proxies
  • Revision deletion
  • Oversight
    • Request
  • Usernames
    • Changing
    • Title blacklist
  • OTRS
  • Bureaucrats'
    • Requests for adminship and bureaucratship
  • Arbitration Committee
    • Requests
    • Enforcement
Content dispute
resolution
  • Requests for comment
  • Third opinion
  • Dispute resolution noticeboard
    • Biographies of living persons
    • Conflict of interest
    • External links
    • Fringe theories
    • Neutral point of view
    • No original research
    • Reliable sources
Other noticeboards
and assistance
  • Regional notice boards
  • Requests for help
    • Category
  • Asking questions
    • Teahouse
    • Help desk
    • Reference desk
    • Adopt-a-user
  • Copyright assistance
    • Copyright investigations
    • Text problems
    • Media questions
  • Resource requests
  • Mergers
    • History mergers
  • Moves
    • Page importation
  • Spam
    • Blacklist
    • Whitelist
  • Bots
  • Education
  • General sanctions
  • Editor sanctions
  • Long-term abuse
Deletion
discussions
  • Guide
    • Admin
  • Today
  • Articles
  • Templates
  • Files
  • Categories
  • Redirects
  • Miscellany
  • Speedy
  • Proposed
    • BLP
  • Review
    • Undeletion
  • Arguments to avoid
  • Arguments to make
  • Article Rescue
Elections and voting
  • Requests for comment (meta)
  • Wikimedia Foundation elections
  • WP Democracy
    • Milestones
Directories, indexes,
and summaries
  • Departments
  • Edit summary legend
  • Editor's index
  • Essays
  • FAQs
  • Glossary
    • Abbreviations
  • Help
  • Manual of Style
    • Simplified
  • Rules
    • Five pillars
    • Policies
    • Guidelines
  • Shortcuts
  • Templates
    • Citation templates
  • Tips
    • Today
  • Tools
  • Wiki markup
  • Media
  • Category
  • Templates
  • v
  • t
  • e
Wikipedia essays (?)
Building, editing, and deletion
Philosophy
  • Articles are more important than policy
  • Articles must be written
  • All Five Pillars are equally important
  • Avoid vague introductions
  • Civil POV pushing
  • Cohesion
  • Competence is required
  • Concede lost arguments
  • Dissent is not disloyalty
  • Don't lie
  • Don't search for objections
  • Duty to comply
  • Editing Wikipedia is like visiting a foreign country
  • Editors will sometimes be wrong
  • Eight simple rules for editing our encyclopedia
  • Explanationism
  • External criticism of Wikipedia
  • Five pillars
  • Here to build an encyclopedia
  • Large language models
  • Leave it to the experienced
  • Levels of competence
  • Levels of consensus
  • Most ideas are bad
  • Need
  • Not broken is ugly
  • Not editing because of Wikipedia restriction
  • Not every article can be a Featured Article
  • The one question
  • Oversimplification
  • Paradoxes
  • Paraphrasing
  • POV and OR from editors, sources, and fields
  • Process is important
  • Product, process, policy
  • Purpose
  • Reasonability rule
  • Systemic bias
  • There is no seniority
  • Ten Simple Rules for Editing Wikipedia
  • Tendentious editing
  • The role of policies in collaborative anarchy
  • The rules are principles
  • Trifecta
  • We are absolutely here to right great wrongs
  • Wikipedia in brief
  • Wikipedia is an encyclopedia
  • Wikipedia is a community
  • Wikipedia is not RationalWiki
Article construction
  • 100K featured articles
  • Abandoned stubs
  • Acronym overkill
  • Adding images improves the encyclopedia
  • Advanced text formatting
  • Akin's Laws of Article Writing
  • Alternatives to the "Expand" template
  • Amnesia test
  • A navbox on every page
  • An unfinished house is a real problem
  • Archive your sources
  • Article revisions
  • Articles have a half-life
  • Autosizing images
  • Avoid mission statements
  • Be neutral in form
  • Beef up that first revision
  • Blind men and an elephant
  • BOLD, revert, discuss cycle
  • Build content to endure
  • Cherrypicking
  • Chesterton's fence
  • Children's lit, adult new readers, & large-print books
  • Citation overkill
  • Citation underkill
  • Common-style fallacy
  • Concept cloud
  • Creating controversial content
  • Criticisms of society may be consistent with NPOV and reliability
  • Dictionaries as sources
  • Don't cite Wikipedia on Wikipedia
  • Don't demolish the house while it's still being built
  • Don't get hung up on minor details
  • Don't hope the house will build itself
  • Don't panic
  • Don't "teach the controversy"
  • Editing on mobile devices
  • Editors are not mindreaders
  • Encourage the newcomers
  • Endorsements (commercial)
  • Featured articles may have problems
  • Formatting bilateral relations articles
  • Formatting bilateral relations templates
  • Fruit of the poisonous tree
  • Give an article a chance
  • Gotfryd custom
  • How to write a featured article
  • Identifying and using independent sources
    • History sources
    • Law sources
    • Primary sources
    • Science sources
    • Style guides
    • Tertiary sources
  • Ignore STRONGNAT for date formats
  • Introduction to structurism
  • Link rot
  • Mine a source
  • Merge Test
  • Minors and persons judged incompetent
  • "Murder of" articles
  • Not every story/event/disaster needs a biography
  • Not everything needs a navbox
  • Not everything needs a template
  • Nothing is in stone
  • Obtain peer review comments
  • Organizing disambiguation pages by subject area
  • Permastub
  • Potential, not just current state
  • Presentism
  • Principle of Some Astonishment
  • The problem with elegant variation
  • Pro and con lists
  • Printability
  • Publicists
  • Put a little effort into it
  • Restoring part of a reverted edit
  • Robotic editing
  • Sham consensus
  • Source your plot summaries
  • Specialized-style fallacy
  • Stublet
  • Stub Makers
  • Run an edit-a-thon
  • Temporary versions of articles
  • Tertiary-source fallacy
  • There are no shortcuts to neutrality
  • There is no deadline
  • There is a deadline
  • The deadline is now
  • Try not to leave it a stub
  • What is a reliable source
  • Understanding Wikipedia's content standards
  • Walled garden
  • What an article should not include
  • Wikipedia is a work in progress
  • Wikipedia is not being written in an organized fashion
  • The world will not end tomorrow
  • Write the article first
  • Writing better articles
Writing article content
  • Avoid thread mode
  • Copyediting reception sections
  • Coup
  • Don't throw more litter onto the pile
  • Gender-neutral language
  • Myth vs fiction
  • Proseline
  • Reading in a flow state
  • Turning biology research into a Wikipedia article
  • Use our own words
  • We shouldn't be able to figure out your opinions
  • Write the article first
  • Writing about women
  • Writing better articles
Removing or
deleting content
  • Adjectives in your recommendations
  • AfD is not a war zone
  • Arguments to avoid in deletion discussions
  • Arguments to avoid in deletion reviews
  • Arguments to avoid in image deletion discussions
  • Arguments to make in deletion discussions
  • Avoid repeated arguments
  • Before commenting in a deletion discussion
  • But there must be sources!
  • Confusing arguments mean nothing
  • Content removal
  • Counting and sorting are not original research
  • Delete or merge
  • Delete the junk
  • Deletion is not cleanup
  • Does deletion help?
  • Don't attack the nominator
  • Don't confuse stub status with non-notability
  • Don't overuse shortcuts to policy and guidelines to win your argument
  • Emptying categories out of process
  • Follow the leader
  • How the presumption of notability works
  • How to save an article nominated for deletion
  • I just don't like it
  • Identifying blatant advertising
  • Identifying test edits
  • Immunity
  • Keep it concise
  • Liar liar pants on fire
  • No Encyclopedic Use
  • Notability is not everything
  • Nothing
  • Nothing is clear
  • Overzealous deletion
  • Relisting can be abusive
  • Relist bias
  • The Heymann Standard
  • Unopposed AFD discussion
  • Wikipedia is not Whack-A-Mole
  • Why was the page I created deleted?
  • What to do if your article gets tagged for speedy deletion
  • When in doubt, hide it in the woodwork
  • Zombie page
Civility
The basics
  • Accepting other users
  • Apology
  • Autistic editors
  • Being right isn't enough
  • Contributing to complicated discussions
  • Divisiveness
  • Don't retaliate
  • Editors' pronouns
  • Edit at your own pace
  • Encouraging the newcomers
  • Enjoy yourself
  • Expect no thanks
  • How to be civil
  • Maintaining a friendly space
  • Negotiation
  • Obsessive–compulsive disorder editors
  • Please say please
  • Relationships with academic editors
  • Thank you
  • Too long; didn't read
  • Truce
  • Unblock perspectives
  • We are all Wikipedians here
  • You have a right to remain silent
Philosophy
  • A thank you never hurts
  • A weak personal attack is still wrong
  • Advice for hotheads
  • An uncivil environment is a poor environment
  • Be the glue
  • Beware of the tigers!
  • Civility warnings
  • Deletion as revenge
  • Duty to comply
  • Failure
  • Forgive and forget
  • It's not the end of the world
  • Nobody cares
  • Most people who disagree with you on content are not vandals
  • On Wikipedia no one knows you're a dog
  • Old-fashioned Wikipedian values
  • Profanity, civility, and discussions
  • Revert notification opt-out
  • Shadowless Fists of Death!
  • Staying cool when the editing gets hot
  • The grey zone
  • The last word
  • There is no Divine Right of Editors
  • Most ideas are bad
  • Nothing is clear
  • Reader
  • The rules of polite discourse
  • There is no common sense
  • Two wrongs don't make a right
  • Wikipedia clichés
  • Wikipedia is not about winning
  • Wikipedia should not be a monopoly
  • Writing for the opponent
Dos
  • Assume good faith
  • Assume the assumption of good faith
  • Assume no clue
  • Avoid personal remarks
  • Avoid the word "vandal"
  • Be excellent to one another
  • Be pragmatic
  • Beyond civility
  • Call a spade a spade
  • Candor
  • Deny recognition
  • Desist
  • Discussing cruft
  • Drop the stick and back slowly away from the horse carcass
  • Encourage full discussions
  • Get over it
  • How to lose
  • Imagine others complexly
  • Just drop it
  • Keep it concise
  • Keep it down to earth
  • Mind your own business
  • Say "MOBY"
  • Mutual withdrawal
  • Read before commenting
  • Read the room
  • Settle the process first
  • You can search, too
Don'ts
  • Wikipedia:Because I can
  • Civil POV pushing
  • Cyberbullying
  • Don't accuse someone of a personal attack for accusing of a personal attack
  • Don't be a fanatic
  • Don't be a jerk
  • Don't be an ostrich
  • Don't be ashamed
  • Don't be a WikiBigot
  • Don't be high-maintenance
  • Don't be inconsiderate
  • Don't be obnoxious
  • Don't be prejudiced
  • Don't be rude
  • Don't be the Fun Police
  • Don't bludgeon the process
  • Don't call a spade a spade
  • Don't call people by their real name
  • Don't call the kettle black
  • Don't call things cruft
  • Don't come down like a ton of bricks
  • Don't cry COI
  • Don't demand that editors solve the problems they identify
  • Don't eat the troll's food
  • Don't fight fire with fire
  • Don't give a fuck
  • Don't help too much
  • Don't ignore community consensus
  • Don't knit beside the guillotine
  • Don't make a smarmy valediction part of your signature
  • Don't remind others of past misdeeds
  • Don't shout
  • Don't spite your face
  • Don't take the bait
  • Don't template the regulars
  • Don't throw your toys out of the pram
  • Do not insult the vandals
  • Griefing
  • Hate is disruptive
  • Nationalist editing
  • No angry mastodons
    • just madmen
  • No ableism
  • No Nazis
  • No racists
  • No Confederates
  • No queerphobia
  • No, you can't have a pony
  • Passive aggression
  • POV railroad
  • Superhatting
  • There are no oracles
  • There's no need to guess someone's preferred pronouns
  • You can't squeeze blood from a turnip
  • UPPERCASE
WikiRelations
  • WikiBullying
  • WikiCrime
  • WikiHarassment
  • WikiHate
  • WikiLawyering
  • WikiLove
  • WikiPeace
Neutrality
  • Academic bias
  • Activist
  • Advocacy
  • Avoid thread mode
  • Be neutral in form
  • Blind men and an elephant
  • Cherrypicking
  • Civil POV pushing
  • Coatrack
  • Controversial articles
  • Creating controversial content
  • Criticisms of society may be consistent with NPOV and reliability
  • Criticism
  • Describing points of view
  • Don't "teach the controversy"
  • Endorsements
  • Let the reader decide
  • Inaccuracy
  • Myth vs fiction
  • NPOV dispute
  • Neutral and proportionate point of view
  • Not Wikipedia's fault
  • POV and OR from editors, sources, and fields
  • Partisans
  • Partisanship
  • Presentism
  • Pro and con lists
  • Systemic bias
  • Tendentious editing
  • There are no shortcuts to neutrality
  • Wikipedia:Truth
  • We are absolutely here to right great wrongs
  • We shouldn't be able to figure out your opinions
  • What is fringe?
  • Why Wikipedia cannot claim the Earth is not flat
  • Wikipedia is not RationalWiki
  • Yes, it is promotion
Notability
  • Advanced source searching
  • All high schools can be notable
  • Alternative outlets
  • Arguments to avoid in deletion discussions
  • Articles with a single source
  • Avoid template creep
  • Bare notability
  • Big events make key participants notable
  • Businesses with a single location
  • But it's true!
  • Common sourcing mistakes
  • Clones
  • Coatrack
  • Discriminate vs indiscriminate information
  • Drafts are not checked for notability or sanity
  • Every snowflake is unique
  • Existence ≠ Notability
  • Existence does not prove notability
  • Extracting the meaning of significant coverage
  • Google searches and numbers
  • How the presumption of notability works
  • High schools
  • Historical/Policy/Notability/Arguments
  • Inclusion is not an indicator of notability
  • Independent sources
  • Inherent notability
  • Insignificant
  • Just because BFDI has an article doesn't mean you can add fancruft about it
  • Masking the lack of notability
  • Make stubs
  • Minimum coverage
  • News coverage does not decrease notability
  • No amount of editing can overcome a lack of notability
  • No one cares about your garage band
  • No one really cares
  • Notability and tornadoes
  • Notability cannot be purchased
  • Notability comparison test
  • Notability is not everything
  • Notability is not a level playing field
  • Notability is not a matter of opinion
  • Notability is not relevance or reliability
  • Notability means impact
  • Notabilitymandering
  • Not all Vocaloid songs deserve their own article
  • Not every single thing Donald Trump does deserves an article
  • Obscurity ≠ Lack of notability
  • Offline sources
  • One sentence does not an article make
  • Other stuff exists
  • Overreliance upon Google
  • Perennial websites
  • Popularity ≠ Notability
  • Read the source
  • Red flags of non-notability
  • Reducing consensus to an algorithm
  • Run-of-the-mill
  • Solutions are mixtures and nothing else
  • Significance is not a formula
  • Source content comes first!
  • Sources must be out-of-universe
  • Subjective importance
  • Third-party sources
  • Trivial mentions
  • Video links
  • Vanispamcruftisement
  • What BLP1E is not
  • What is and is not routine coverage
  • What notability is not
  • What to include
  • Why was BFDI not on Wikipedia?
  • Wikipedia is not Crunchbase
  • Wikipedia is not here to tell the world about your noble cause
  • Wikipedia is not the place to post your résumé
  • Two prongs of merit
Humorous
  • Adminitis
  • Ain't no rules says a dog can't play basketball
  • Akin's Laws of Article Writing
  • Alternatives to edit warring
  • ANI flu
  • Anti-Wikipedian
  • Anti-Wikipedianism
  • Articlecountitis
  • Asshole John rule
  • Assume bad faith
  • Assume faith
  • Assume good wraith
  • Assume stupidity
  • Assume that everyone's assuming good faith, assuming that you are assuming good faith
  • Avoid using the preview button
  • Avoid using wikilinks
  • Bad Jokes and Other Deleted Nonsense
  • Barnstaritis
  • Before they were notable
  • Be the fun police
  • BOLD, revert, revert, revert cycle
  • Boston Tea Party
  • Butterfly effect
  • CaPiTaLiZaTiOn MuCh?
  • Case against LLM-generated articles
  • Complete bollocks
  • Counting forks
  • Counting juntas
  • Crap
  • Delete the main page
  • Diffusing conflict
  • Don't stuff beans up your nose
  • Don't-give-a-fuckism
  • Don't abbreviate "Wikipedia" as "Wiki"!
  • Don't delete the main page
  • Editcountitis
  • Edits Per Day
  • Editsummarisis
  • Editing under the influence
  • Embrace Stop Signs
  • Emerson
  • Fart
  • Five Fs of Wikipedia
  • Seven Ages of Editor, by Will E. Spear-Shake
  • Go ahead, vandalize
  • How many Wikipedians does it take to change a lightbulb?
  • How to get away with UPE
  • How to put up a straight pole by pushing it at an angle
  • How to vandalize correctly
  • How to win a citation war
  • If you have a pulse
  • Ignore all essays
  • Ignore all user warnings
  • Ignore every single rule
  • Is that even an essay?
  • Keep beating the horse
  • List of really, really, really stupid article ideas that you really, really, really should not create
  • Mess with the templates
  • My local pond
  • Newcomers are delicious, so go ahead and bite them
  • Legal vandalism
  • List of jokes about Wikipedia
  • LTTAUTMAOK
  • No climbing the Reichstag dressed as Spider-Man
  • No episcopal threats
  • No one cares about your garage band
  • No one really cares
  • No, really
  • No self attacks
  • Notability is not eternal
  • Oops Defense
  • Play the game
  • Please be a giant dick, so we can ban you
  • Please bite the newbies
  • Please do not murder the newcomers
  • Pledge of Tranquility
  • Project S.C.R.A.M.
  • R-e-s-p-e-c-t
  • Requests for medication
  • Requirements for adminship
  • Rouge admin
  • Rouge editor
  • Sarcasm is really helpful
  • Sausages for tasting
  • Spaling Muich?
  • Template madness
  • The Night Before Wikimas
  • The first rule of Wikipedia
  • The Five Pillars of Untruth
  • Things that should not be surprising
  • The WikiBible
  • Watchlistitis
  • We are deletionist!
  • Why is BFDI on Wikipedia?
  • Why you shouldn't write articles with ChatGPT, according to ChatGPT
  • Wikipedia is an MMORPG
  • WTF? OMG! TMD TLA. ARG!
  • Yes, falsely
  • Yes legal threats
  • Yes personal attacks
  • You don't have to be mad to work here, but
  • You should not write meaningless lists
About
About essays
  • Essay guide
  • Value of essays
  • Difference between policies, guidelines and essays
  • Don't cite essays as if they were policy
  • Avoid writing redundant essays
  • Finding an essay
  • Quote your own essay
Policies and guidelines
  • About policies and guidelines
    • Policies
    • Guidelines
  • How to contribute to Wikipedia guidance
  • Policy writing is hard
Essay search
  • v
  • t
  • e
Wikipedia help pages
  • Visit the Teahouse or the Help desk for an interactive Q & A forum.

  • FAQs (?)
  • Reference desks (?)
  • Noticeboards (?)
  • Cheatsheet (?)
  • Directories (?)
  • Village pumps (?)
About Wikipedia (?)
  • Administration
    • Purpose
    • Principles
  • Policies and guidelines
  • What Wikipedia is not
  • Disclaimer (parental advice)
  • Making requests
  • Who writes Wikipedia?
Help for readers (?)
  • FAQ
  • Books
  • Copyright
  • Glossary
  • Mobile access
  • Navigation
  • Other languages
  • Searching
  • Students
  • Viewing media
Contributing
to Wikipedia
 (?)
  • Advice for young editors
  • Avoiding common mistakes
  • Etiquette
  • Simplified Manual of Style
  • Simplified rule-set
    • "Ignore all rules"
    • "The rules are principles"
  • Style-tips
  • Tip of the day
  • Your first article (article wizard)
Getting started (?)
  • Why create an account?
  • Introductions by topic
  • Graphics tutorials
    • Picture tutorial
    • IRC (live chat) tutorial
  • VisualEditor user guide
Dos and don'ts (?)
  • Accessibility
  • Biographies
  • Biographies (living)
  • Categorization
  • Consensus
  • Discussions
  • Disambiguation
  • Images
  • Leads
  • Links
  • Lists
  • References
  • Tables
  • Titles (of articles)
How-to pages and
information pages (?)
  • Appealing blocks
  • Article deletion
  • Categories
  • Citations/references
    • Referencing for beginners
    • Citation Style 1
    • Cite errors
    • References and page numbers
  • Convert
  • Diff
  • Editing
    • Minor edit
    • toolbar
    • edit conflict
  • Find sources
  • Files
  • Footnotes
  • Image deletion
  • Infoboxes
  • Linking (link color)
  • Logging in
  • Merging
  • New page review
  • Page name
    • Renaming pages
  • Redirect
  • Passwords
    • Email confirmation
  • Reverting
    • Simple vandalism cleanup
  • Talk pages (archiving
  • simple archiving)
  • User contributions
  • WP search protocol
Coding (?)
  • Wiki markup
  • Barcharts
  • Calculations
  • Characters
  • Columns
  • Elevation
  • Hidden text
  • HTML
  • Lists
  • Magic words
  • Music symbols
  • Sections
  • Sounds
  • Tables
  • Templates
  • Transclusion
  • URL
  • Visual files
Directories (?)
  • Abbreviations
  • AI
  • Departments
  • Editor's index
  • Essays
  • FAQs
  • Glossary
  • Guidelines
  • Manual of Style
  • Policies
  • Tasks
  • Tips
  • Tools
Missing Manual
Ask for help on your talk page (?)
  • v
  • t
  • e
Wikipedia referencing
Policies and guidelines
  • Verifiability
  • No original research
  • Biographies of living persons
  • Reliable sources
    • Medicine
  • Citing sources
  • Scientific citations
General advice
  • Citation needed
  • Combining sources
  • Offline sources
  • Referencing styles
Citing sources
  • Citation Style 1
  • Citation Style 2
  • Bluebook
  • Comics
  • Citation templates
Inline citations
  • Footnotes
  • Punctuation and footnotes
  • Shortened footnotes
  • Nesting footnotes
Help for beginners
  • Reference-tags
  • Citations quick reference
  • Introduction to referencing
  • Referencing with citation templates
  • Referencing without using templates
  • Referencing dos and don'ts
  • Citing Wikipedia
Advanced help
  • Cite link labels
  • Cite errors
  • Citation merging (bundling)
  • Cite messages
  • Converting between references formats
  • Reference display customization
  • References and page numbers
  • Guidance on source reviewing at FAC
  • Cite extension documentation
Footnote templates
  • Citation Style documentation
  • Multiple references
  • {{Reflist}}
  • {{Refbegin}}
Find references
  • How to find sources
  • Bibliographies
  • Wikipedia Library
  • Resource Exchange
  • Reference Desk
  • Book Sources
  • Free newspaper sources
Citation tools
(External links)
  • Citer
  • Citation bot
  • MakeRef
  • Refill
  • WayBack
  • OABot
  • v
  • t
  • e
Wikipedia technical help
Get personal technical help at the Teahouse, help desk, village pump (technical), talk pages, or IRC.
General
technical help
  • Bypass cache
  • Keyboard shortcuts
  • Editing
    • CharInsert
    • Edit conflict
    • Edit toolbar
    • Reverting
  • How to create a page
  • IRC
    • Tutorial
  • Mobile access
  • Multilingual support
  • Page history
  • Page information
  • Page name
    • Help
  • Printing
  • Software notices
    • Editnotice
  • Special characters
    • Entering
  • User access levels
  • VisualEditor
    • Help
Special
page
-related
  • Special page help
  • AllPages
  • Edit filter
  • Emailing users
  • Logging in
    • Reset passwords
  • Logs
  • Moving a page
    • History merging
    • Non-admin and admin-only page moves
  • Notifications/Echo
    • FAQ
  • Page Curation
  • Page import
  • Pending changes
  • Random pages
  • Recent changes
  • Related changes
  • Searching
    • Linksearch
  • Tags
  • User contributions
  • Watchlist
  • What links here
Wikitext
  • Wikitext
    • Cheatsheet
  • Columns
  • Line-break handling
  • Lists
  • Magic words
    • For beginners
    • Conditional expressions
    • Switch parser function
    • Time function
  • Redirects
  • Sections and TOCs
  • Tables
    • Introduction
    • Basics
    • Advanced table formatting
    • Collapsing
    • Conditional tables
    • Sortable tables
  • Using colours
Links and diffs
  • Links
    • Interlanguage
    • Interwiki
    • Permanent
  • Diffs
    • Simplest diff guide
    • Simple diff and link guide
    • Complete diff and link guide
  • Colon trick
  • Link color
  • Pipe trick
  • URLs
Media files: images,
videos and sounds
  • Media help
  • Files
    • Creation and usage
    • Moving files to Commons
  • Images
    • Introduction to images
    • Picture tutorial
    • Preparing images for upload
    • Uploading images
    • Options to hide an image
    • Extended image syntax
    • SVG help
  • Gallery tag
  • Graphics tutorials
    • Basic bitmap image editing
    • How to improve image quality
    • Graphics Lab resources
  • Sound file markup
  • Visual file markup
Other graphics
  • Family trees
  • Graphs and charts
    • How to create
    • Barcharts
    • To scale charts
  • Math formulas
    • Math symbols
  • Musical scores
    • Musical symbols
  • Timeline
    • EasyTimeline syntax
  • WikiHiero syntax
Templates and
Lua modules
  • Templates
  • Advanced template coding
  • Template documentation
  • Template index
  • Template limits
  • Template sandbox and test cases
  • Citation templates
  • Lua help
  • Lua project
    • Resources
    • To do
  • Substitution
  • Purge
    • Job queue
  • Transclusion
    • Labeled section
    • Costs and benefits
  • Guide to Scribbling
Data structure
  • Namespaces
  • Main/Article
  • Category
  • Draft
  • File
    • File description page
  • Help
  • Portal
  • Project/Wikipedia
  • Talk
    • Archiving
      • Simple
  • Template
  • User
    • User page design
  • MediaWiki
    • Bug reports and feature requests
    • TimedMediaHandler extension
  • Module
  • Special
HTML and CSS
  • Cascading Style Sheets
  • HTML in wikitext
  • Catalogue of CSS classes
  • Common.js and common.css
  • Classes in microformats
  • Markup validation
  • Span tags
  • Useful styles
Customisation
and tools
  • Preferences
  • Gadgets
  • Skins
  • Citation tools
  • Cleaning up vandalism tools
  • Customizing watchlists
    • Hide pages
  • IRC Scripts
  • User scripts
    • Guide
    • List
    • Techniques
    • Safe mode
  • User style
  • Tools
    • Alternative browsing
    • Browser tools
    • Editing tools
    • Navigation shortcuts
    • Optimum tool set
  • Wikimedia Cloud Services
  • Beta Features at MediaWiki
Automated editing
  • AfC helper script
  • AntiVandal
  • AutoWikiBrowser
  • Bots
    • Creating
    • history
  • HotCat
  • Huggle
  • Navigation popups
  • RedWarn
  • Twinkle
  • Ultraviolet
  • WPCleaner
  • Inactive
    • igloo
    • STiki
  • See also: Category:Wikipedia how-to
  • Category:Wikipedia information pages
    Further navigation at: Help pages
    • Administrators
  • Accessibility
  • Accounts
  • Bots
  • Referencing
    • Citation metadata
  • Templates
  • User scripts
  • v
  • t
  • e
Wikipedia templates
Main namespace
  • General
  • Cleanup
    • Verifiability and sources
  • Disputes
  • Hatnotes
  • Infoboxes
  • Links
    • External link templates
    • Linking country articles
  • Lists
  • Main page
  • Section
  • Sources of articles
    • Quick reference
  • Standard boxes
  • Stub types
  • Translation
Other namespaces
  • Compact TOC
  • Category
  • File
  • Talk
  • Template
  • User
    • Userboxes
  • User talk
  • Wikipedia
    • WikiProject banners
All namespaces
  • Deletion
    • Speedy
  • Formatting
  • Maintenance
  • Merging
  • Moving
    • Requested
  • Navigation
  • Redirect pages
    • Functional index
    • Language codes
  • Splitting
  • Wikimedia sister projects
Navboxes
with templates
  • Archiving
  • Articles for deletion
  • Birth, death and age
  • Button
  • Category header
  • Citation and verifiability
  • Citation Style 1
  • Deletion review
  • Editnotice
  • Hatnotes
  • Help desk
  • Inline cleanup
  • Introduction cleanup
  • IPA
  • Math
  • Notice and warnings
  • Organization infoboxes
  • Proposed article mergers
  • Protection
  • Quotation
  • Redirects
  • Search
  • Semantics
  • Speedy deletion
    • Notices
  • String-handling
  • Sup and sub-related
  • Top icon
  • Transwiki maintenance
  • Unicode
  • User talk pages
  • User noticeboard notices
  • Userboxes
    • User rights
  • Userspace linking
  • Userspace disclaimers
  • Wikibreak
  • WikiLove
Inline images
  • Wikipedia icons
  • Discussion icons
  • Comment icons
  • Emoji
Help pages
  • Template documentation
  • Examples of templates
  • Maintenance template removal
  • Requested templates
  • Template help
    • Quick guide
  • Favorite templates
  • Template namespace
Related topics
  • WikiProject Templates
  • Index
    • Category
Search
  • Category
  • v
  • t
  • e
Awards, decorations, and medals of Wikipedia
Awarded by co-founder Jimmy Wales
  • Order of the Day
  • Wikimedian of the Year
    • also by country
Awards by WikiProject
  • WikiCup
  • Editor of the Week
  • W Award
  • Four Award
  • Triple Crown
  • Million Award
  •  Impact
  • Precious
Barnstars and other personal awards
  • Barnstar awards
    • by topic
  • Personal user awards
  • Personal greetings and cheers
  • Awards by country
    • 2.0
  • Ribbons
Awards by number of edits
  • Service awards
  • Incremental service awards
  • Administrative service awards
See also
  • WikiLove
  • Thanks!
  • Reward board
  • Contests
  • Merchandise giveaways
  • Wikipedia:Five Year Society
  • Wikipedia:Ten Year Society
  • Wikipedia:Fifteen Year Society
  • Wikipedia:Twenty Year Society
  • Wikipedia:Twenty-Five Year Society
  • WikiProject Wikipedia Awards
  • Peace dove Kindness Campaign
  • v
  • t
  • e
Useful links
Daily pages
  • CAT:HELP
  • WP:ANI
  • WP:BLPN
  • WP:BOTN
  • WP:COIN
  • WP:DASH
  • WP:FTN
  • WP:HD
  • WP:MCQ
  • WP:NORN
  • WP:NPOVN
  • WP:PUMP (/A /M /P /R /T)
  • WP:RD (/C /E /H /L /M /MA /S)
  • WP:RFC (/MEDIA /BIO /ECON /HIST /LANG /NAME /PAG /PHIL /POLY /SCI /SOC /STYLE)
  • WP:RFF
  • WP:RSN
  • WP:SPI
  • WP:THIRD
  • WP:DRV)
Things to do
  • CAT:BACKLOG
  • CAT:M
  • CAT:WRI
  • WP:AFC
  • WP:ASOF
  • WP:DPWL
  • WP:FAC
  • WP:FAR
  • WP:FPC
  • WP:GAN
  • WP:GAR
  • WP:KIND
  • WP:MISSING
  • WP:PR
  • WP:RD
  • WP:RP
  • WP:SPOKEN
  • WP:UW
  • WP:THQ
  • WP:VITAL
  • WP:WANTED
  • WP:WC
  • BrokenRedirects
  • Disambigs
  • LongPages
  • NewPages
  • OrphanPages
  • TagsPages
  • UncatImages
  • UncatPages
Resources
  • CAT:HOWTO
  • WP:AWARD
  • WP:CATEGORY
  • WP:CAT-R
  • WP:CITE
  • WP:CITET
  • WP:COPYEDIT
  • WP:CUTPASTE
  • WP:CUV
  • WP:DEPT
  • WP:DFD
  • WP:DISAMBIG
  • WP:EDIT
  • WP:CITE
  • WP:FORMULA
  • WP:HAT
  • WP:ICT
  • WP:LAYOUT
  • WP:LIBRARY
  • WP:MAGIC
  • WP:MERGE
  • WP:PIFU
  • WP:PRECEDENT
  • WP:REDIRECT
  • WP:STYLE
  • WP:SUMMARY
  • WP:TEMPLATE
  • CatTree
  • PrefixIndex
Policies /
Guidelines
  • WP:3RR
  • WP:ADMIN
  • WP:AP
  • WP:APPEAL
  • WP:ATTACK
  • WP:AUTOBIO
  • WP:BAN
  • WP:BLANK
  • WP:BLOCK
  • WP:BOLD
  • WP:BOTPOL
  • WP:CANVASS
  • WP:CFORK
  • WP:CIVIL
  • WP:CONFLICT
  • WP:CONSENSUS
  • WP:COPYRIGHT
  • WP:DELETE
  • WP:DISCLAIM
  • WP:DISPUTE
  • WP:DISRUPTIVE
  • WP:DONTBITE
  • WP:DPR
  • WP:EP
  • WP:ETIQ
  • WP:EDITWAR
  • WP:FRINGE
  • WP:GAME
  • WP:GOOGLE
  • WP:HARASS
  • WP:HOAX
  • WP:IGNORE
  • WP:IUP
  • WP:LEAD
  • WP:LEGAL
  • WP:LIBEL
  • WP:LINKS
  • WP:CLNT
  • WP:LIVING
  • WP:LOGOS
  • WP:M
  • WP:NAME
  • WP:NONFREE
  • WP:NONSENSE
  • WP:NOT
  • WP:NOTE
  • WP:NPOV
  • WP:NPS
  • WP:OFFICE
  • WP:ORIGINAL
  • WP:OVERSIGHT
  • WP:OWN
  • WP:PACL
  • WP:PD
  • WP:PEACOCK
  • WP:PERFORM
  • WP:POINT
  • WP:POLLING
  • WP:PROD
  • WP:PROTECT
  • WP:RELIABLE
  • WP:SELF
  • WP:SOCK
  • WP:SPAM
  • WP:SPEEDY
  • WP:STUB
  • WP:TALK
  • WP:TP
  • WP:TRIVIA
  • WP:USERBOX
  • WP:USERNAME
  • WP:USERPAGE
  • WP:VANDAL
  • WP:VANISH
  • WP:VERIFY
  • WP:WEASEL
  • WP:WHEEL
Administrators
  • CAT:AB
  • CAT:CSD
  • CAT:PER
  • CAT:RFU
  • WP:AE
  • WP:AIV
  • WP:AN
  • WP:ANEW
  • WP:ARL
  • WP:CP
  • WP:DGFA
  • WP:NAS
  • WP:OP
  • WP:RFA
  • WP:RFARB
  • WP:RFM
  • WP:RFPP
  • WP:RM
  • WP:RSPAM
  • WP:UAA
  • BlockLog
  • DelLog
  • ProtectLog
External links
  • Article statistics
  • Edit Counter
  • FIST
  • ISBNdb
  • Make Reference
  • Wikichecker
  • WikiEN-l archives
  • v
  • t
  • e
Toolbox
Templates
Welcome
  • {{subst:Welcome}}
  • {{subst:Welcomeh}}
  • {{subst:Welcome-unregistered}}
  • {{subst:W-graphical-temp}}
  • {{subst:Welcome-unregistered-unconstructive}}
  • {{subst:Welcome-temp-npov}}
  • {{subst:Welcome-t}}
  • {{subst:Thanks}}
Vandalism
  • {{subst:uw-vandalism1}}
  • {{subst:uw-vandalism2}}
  • {{subst:uw-vandalism3}}
  • {{subst:uw-vandalism4}}
  • {{subst:uw-vandalism4im}}
Content removal
  • {{subst:uw-delete1}}
  • {{subst:uw-delete2}}
  • {{subst:uw-delete3}}
  • {{subst:uw-delete4}}
  • {{subst:uw-delete4im}}
Check
  • {{subst:Copyvio|url=source}}
  • {{Db|...}}
  • {{Di-no license}}
  • {{Di-no source}}
Dispute
  • {{Citation needed}}
  • {{Controversial}}
  • {{Disputed}}
  • {{Fringe theories}}
  • {{POV}}
  • {{Unreferenced section}}
  • {{Promotional}}
  • {{Multiple issues}}
Delete
  • {{subst:Article for deletion}}
  • {{subst:cfd}}
  • {{Files for discussion}}
  • {{Miscellany for deletion}}
  • {{subst:Redirect for discussion}}
  • {{subst:Template for discussion}}
  • {{subst:Proposed deletion}}
Community
  • Barnstars
  • Community portal
  • Current discussions
    • Request directory
  • Essays
  • Departments
  • Noticeboards
  • Peer review
  • RC patrol
  • Tools
  • Village pumps
  • WikiProjects
Protocols
  • Policies
  • Guidelines
  • Manual of Style
Main
  • Did you know
  • In the news
  • Picture of the day
  • Selected anniversaries
  • Today's featured article
Stats
  • Statistics
    • Site map
External
  • HTML to Wiki Converter for Tables
Wikipedia:Directories and indexes
Retrieved from "https://teknopedia.ac.id/w/index.php?title=Help:Wikitext&oldid=1336659085"
Categories:
  • Wikipedia how-to
  • Wikipedia article elements help
  • Wikipedia editor help
  • Wikipedia text help
Hidden categories:
  • Pages using the WikiHiero extension
  • Pages using the Score extension
  • Wikipedia move-protected project pages
  • Wikipedia semi-protected project pages

  • indonesia
  • Polski
  • العربية
  • Deutsch
  • English
  • Español
  • Français
  • Italiano
  • مصرى
  • Nederlands
  • 日本語
  • Português
  • Sinugboanong Binisaya
  • Svenska
  • Українська
  • Tiếng Việt
  • Winaray
  • 中文
  • Русский
Sunting pranala
url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url
Pusat Layanan

UNIVERSITAS TEKNOKRAT INDONESIA | ASEAN's Best Private University
Jl. ZA. Pagar Alam No.9 -11, Labuhan Ratu, Kec. Kedaton, Kota Bandar Lampung, Lampung 35132
Phone: (0721) 702022
Email: pmb@teknokrat.ac.id