Help:Editing: Difference between revisions

m
Protected "Help:Editing" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only administrators] (indefinite))
(Redirects and signatures.)
m (Protected "Help:Editing" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only administrators] (indefinite)))
 
(40 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This page is a reference and a tutorial for basic Mediawiki syntax, which is the code used on this wiki to produce formatted articles from plain text. More advanced techniques can be found [[Help:Editing/Advanced techniques|here]]. If there is something that you cannot find in either of these places, but want explained, ask [[Help talk:Editing|here]].
{{shortcut|P:EDITING}}
This page is a reference and a tutorial for basic Mediawiki syntax, which is the code used on this wiki to produce formatted articles from plain text. More advanced techniques can be found in [[Help:Editing/Advanced techniques]]. If there is something that you cannot find in either of these places, but want explained, ask in [[Help talk:Editing|this guide's discussion page]].


== Text ==
== Text ==
Line 16: Line 17:
|}
|}


== Links ==
=== Sections ===
Articles are divided into sections, and there can be multiple levels of sections. To make a paragraph of text into a section heading, surround it with 2 or more equals signs.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>== Main heading ==
Paragraph.
 
=== Subheading ===
Paragraph.
 
==== Minor heading ====
Paragraph.</nowiki></pre>
|
<span style="font-size: 160%; font-family: serif">Main heading</span>
----
Paragraph.
 
<span style="font-size: 125%; font-weight: bold;">Subheading</span>
 
Paragraph.
 
<span style="font-size: 105%; font-weight: bold;">Minor heading</span>
 
Paragraph.
|}
 
A table of contents is automatically generated when there are more than 4 sections in an article.
 
To make a piece of text function like a heading but not appear in the table of contents, place a semicolon at the start of the line.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>;Obstacles
*Dirt wall
*Bridge
 
;Enemies
*Bulborb
*Fiery Blowhog</nowiki></pre>
|
;Obstacles
*Dirt wall
*Bridge
 
;Enemies
*Bulborb
*Fiery Blowhog
|}
 
=== Links ===
To link to another page, surround a piece of text with 2 square brackets. This will create a link to the article within the square brackets.
To link to another page, surround a piece of text with 2 square brackets. This will create a link to the article within the square brackets.
{|class="wikitable"
{|class="wikitable"
Line 31: Line 82:
|<pre><nowiki>Caves are [[Randomization|randomly generated]] by arranging [[Cave unit|rooms]].</nowiki></pre>
|<pre><nowiki>Caves are [[Randomization|randomly generated]] by arranging [[Cave unit|rooms]].</nowiki></pre>
|Caves are [[Randomization|randomly generated]] by arranging [[Cave unit|rooms]].
|Caves are [[Randomization|randomly generated]] by arranging [[Cave unit|rooms]].
|}
It is possible to link to sections of an article by placing a # sign between the article name and the section name. Omitting the article name will link to another section of the current article.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>[[Ship part#List]] is a section of the [[ship part]] article. See [[#Sections|sections]] for more information about sections.</nowiki></pre>
|[[Ship part#List]] is a section of the [[ship part]] article. See [[#Sections|sections]] for more information about sections.
|}
|}


Note that the capitalization of article titles in links must be correct for the link to work (except for the first letter in the title, which can have any capitalization).
Note that the capitalization of article titles in links must be correct for the link to work (except for the first letter in the title, which can have any capitalization).


== Formatting ==
=== Formatting ===
To make text italic or bold, surround it with 2 or 3 apostrophes.
To make text italic or bold, surround it with 2 or 3 apostrophes.
{|class="wikitable"
{|class="wikitable"
Line 102: Line 161:
|}
|}


== Sections ==
When writing a dash, it's preferable to use the HTML code for the dash rather than the character itself, which can be confused with a hyphen. This can be done by writing the text <code><nowiki>&amp;ndash;</nowiki></code> in place of the dash. The same thing can be done (with different codes) for other special characters.
Articles are divided into sections, and there can be multiple levels of sections. To make a paragraph of text into a section heading, surround it with 2 or more equals signs.
{|class="wikitable"
{|class="wikitable"
!Code!!Result
!Code!!Result
|-
|-
|<pre><nowiki>== Main heading ==
|<pre><nowiki>In ''Pikmin'', Yellow Pikmin can carry [[bomb-rock]]s &amp;ndash; an ability necessary to access certain sections of areas.</nowiki></pre>
Paragraph.
|In ''Pikmin'', Yellow Pikmin can carry [[bomb-rock]]s &ndash; an ability necessary to access certain sections of areas.
 
=== Subheading ===
Paragraph.
 
==== Minor heading ====
Paragraph.</nowiki></pre>
|
== Main heading ==
Paragraph.
 
=== Subheading ===
Paragraph.
 
==== Minor heading ====
Paragraph.
|}
|}
It is possible to link to sections of an article by placing a # sign between the article name and the section name. Omitting the article name will link to another section of the current article.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>[[Ship part#List]] is a section of the [[ship part]] article. See [[#Sections|here]] for more information about sections.</nowiki></pre>
|[[Ship part#List]] is a section of the [[ship part]] article. See [[#Sections|here]] for more information about sections.
|}
A table of contents is automatically generated when there are more than 4 sections in an article.


== Images ==
== Images ==
Line 182: Line 215:
</gallery>
</gallery>
|}
|}
Note that the mobile version of the website displays images differently, so some of these formatting changes may make no difference depending on your device.


== Templates ==
== Templates ==
Line 211: Line 245:
Arguments can have names, which means that instead of just separating the arguments by vertical bars, each argument contains a name and a value connected by an equals sign.
Arguments can have names, which means that instead of just separating the arguments by vertical bars, each argument contains a name and a value connected by an equals sign.


Some templates are more complex, featuring many arguments. An example of this is {{tem|infobox upgrade}}, which is used to show basic information about [[upgrade]]s. These include which games the upgrade appears in, an image of the upgrade, the areas it appears in, and the upgrade's weight. To make large templates like this easier to work with, it's recommended to place each argument on its own line. For the [[Dodge Whistle]], the template would look like this:
Some templates are more complex, featuring many arguments. An example of this is {{tem|infobox upgrade}}, which is used to show basic information about [[gear]]. These include which games the upgrade appears in, an image of the gear, its function, and how to obtain it. To make large templates like this easier to work with, it's recommended to place each argument on its own line. For the [[Dodge Whistle]], the template would look like this:
{|class="wikitable"
{|class="wikitable"
!Code!!Result
!Code!!Result
Line 221: Line 255:
|image        = DodgeWhistleArt.png
|image        = DodgeWhistleArt.png
|caption      = The Dodge Whistle's capsule.
|caption      = The Dodge Whistle's capsule.
|area        = [[Distant Tundra]]
|weight      = 10
|max_carriers = 20
|function    = Allows leaders and Pikmin to dodge
|function    = Allows leaders and Pikmin to dodge
|requirements = Retrieve the capsule
}}</nowiki></pre>
}}</nowiki></pre>
|{{infobox upgrade
|{{infobox upgrade
Line 232: Line 264:
|image        = DodgeWhistleArt.png
|image        = DodgeWhistleArt.png
|caption      = The Dodge Whistle's capsule.
|caption      = The Dodge Whistle's capsule.
|area        = [[Distant Tundra]]
|weight      = 10
|max_carriers = 20
|function    = Allows leaders and Pikmin to dodge
|function    = Allows leaders and Pikmin to dodge
|requirements = Retrieve the capsule
}}
}}
|}
|}
Line 242: Line 272:


== Categories ==
== Categories ==
Pages can be included in categories, which allow related pages to be grouped together. Examples of categories are [[:Category:Bosses]], [[:Category:Menus]], and [[:Category:2-Player Battle images]]. To include an article, image, category, or any other page inside a category, link to that category anywhere in the page (but preferably at the bottom). The link will not appear, and instead the article will be added to the category. A list of categories a page is in can be found at the bottom of the page.
Pages can be included in categories, which allow related pages to be grouped together for navigation purposes. Some examples of categories are [[:Category:Bosses]], [[:Category:Menus]], and [[:Category:2-Player Battle images]]. To include an article, image, category, or any other page inside a category, create a link to that category anywhere in the page (but preferably at the bottom). It will not appear as a link, and instead the page will be added to the category. A list of categories a page is in can be found at the bottom of the page in the desktop version of the site.
 
{|class="wikitable"
{|class="wikitable"
!Code!!Result
!Code!!Result (see bottom of page)
|-
|-
|<pre><nowiki>[[Category:Help]]</nowiki></pre>
|<pre><nowiki>[[Category:Help]]</nowiki></pre>
|[[Category:Help]]
|[[Category:Help]]
|}
|}
A faster way of adding, changing, or removing categories is by using {{w|WP:HC|HotCat}}, enabled via [[Special:Preferences|preference]]s. Note that only [[Pikipedia:Users|registered users]] have access to this tool, while [[Pikipedia:IP addresses|logged-out editors]] are required to [[Special:CreateAccount|create an account]] to utilize it.
[[File:HotCat demonstration.png|center|800px]]
{{clear}}


== Other ==
== Other ==
=== Redirect pages ===
Redirect pages are special pages that automatically go to another page when someone searches them or clicks on a link to them. They're useful when an article has multiple things it could be called. To create a redirect page, start it with <code><nowiki>#REDIRECT</nowiki></code> and then link to the article. An example of this is [[Olimar]], which contains <code><nowiki>#REDIRECT [[Captain Olimar]]</nowiki>.</code>
Redirect pages are special pages that automatically go to another page when someone searches them or clicks on a link to them. They're useful when an article has multiple things it could be called. To create a redirect page, start it with <code><nowiki>#REDIRECT</nowiki></code> and then link to the article. An example of this is [[Olimar]], which contains <code><nowiki>#REDIRECT [[Captain Olimar]]</nowiki>.</code>


Tables are useful ways of displaying information in an article, but the syntax can be complicated. Go to [[Help:Tables]] for information on tables.
=== Talk pages ===
 
In talk pages, you can end your post with a signature, which contains your username and the date and time of your post. To sign your posts, put 4 tildes (<code><nowiki>~~~~</nowiki></code>) at the end of the post. (3 tildes will produce just the username, and 5 tildes will produce just the time and date.) It's possible to customize your signature in [[Special:Preferences|your preferences page]]. Below is an example of a custom signature.
In talk pages, you can end your post with a signature, which contains your username and the date and time of your post. To sign your posts, put 4 tildes (<code><nowiki>~~~~</nowiki></code>) at the end of the post. (3 tildes will produce just the username, and 5 tildes will produce just the time and date.) It's possible to customize your signature in your preferences page. Below is an example of a custom signature.
{|class="wikitable"
{|class="wikitable"
!Code!!Result
!Code!!Result
|-
|-
|<pre><nowiki>~~~~</nowiki></pre>
|<pre><nowiki>~~~~</nowiki></pre>
|&mdash; [[User:Botanist|'''Botanist''']]<sub>[[User talk:Botanist|''(talk)'']]</sub> 18:30, April 15, 2021 (EDT)
|&mdash; '''{''[[User:Espyo|Espyo]]''<sup>[[User talk:Espyo|T]]</sup>}''' 12:00, January 1, 2020 (EST)
|}
|}


There are many more features to MediaWiki syntax than this; go to [[Help:Editing/Advanced techniques]] for more advanced editing techniques.
=== Tables ===
For some types of information, it may be practical to display it on a table. Since table syntax can be complicated, it is described at [[Help:Tables]] instead of on this page.
 
== Pikipedia standards ==
[[Pikipedia:Policies and guidelines|Pikipedia's policies and guidelines]] contain useful information in making sure edits fit Pikipedia's style. Here are a few tips:
* Always italicize the names of games.
* Don't refer to the player as "you", except in [[Pikipedia:Guides|guide]] sections.
* [[Help:Files|Images]] should always have a proper description and license.
* If you notice a problem with an article, such as a lack of information or confusing writing, and don't know how to fix it, place a [[:Category:Maintenance templates|maintenance template]] on it so that others can know to fix it. There are several to choose from, including {{tem|stub}} and {{tem|clean}}.
 
==See also==
*{{w|Help:Wikitext|Wikipedia's guide to MediaWiki syntax}}


==Pikipedia standards==
{{help}}
{{main|Pikipedia:Policies and guidelines}}
*If an article is seriously lacking in vital information, call it a stub by putting ''<nowiki>{{stub}}</nowiki>'' at the top of the page.
*Articles that contain a fair amount of content but have layout problems, are badly written or have any other serious problem should be added to the "Clean it up" category by adding ''<nowiki>{{clean}}</nowiki>'' to the top of the page.
*Articles that qualify for deletion can be submitted for it by adding ''<nowiki>{{delete|reason goes here}}</nowiki>'' to the page.  Reasons an article would need to be deleted can be found at [[Pikipedia:Pages for deletion]].
*Images that are screenshots must contain the text ''<nowiki>{{screenshot}}</nowiki>'' to add a copyright notice and categorize them.  For other image tags and general file information, see [[Help:Files]].