Help:Editing: Difference between revisions

m
Protected "Help:Editing" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only administrators] (indefinite))
(Not done, hold on.)
m (Protected "Help:Editing" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only administrators] (indefinite)))
 
(87 intermediate revisions by 9 users not shown)
Line 1: Line 1:
This page is a reference and a tutorial for Mediawiki code, which is the code used on this Wiki. Should there be something that you cannot find here, 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]].


== Linking ==
== Text ==
To add an internal link (that is, to another page in the [[Pikipedia]]), enclose the page name in double square parentheses. Correct capitalization is required for every letter but the first:
Text entered into the editor will appear in the article as standard text.
*"<nowiki>[[insert page name here]]</nowiki>"


To change the text that is displayed, a pipe character is used to separate the link and text shown:
To separate paragraphs, there must be an empty line between them.
*"<nowiki>[[actual page name|displayed text]]</nowiki>"
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>This is some text.


It is also possible to link to a specific section of a page. For that, add a number sign and then the name of the section, like this:
This is a new paragraph.</nowiki></pre>
*"<nowiki>[[article name#name of section]]</nowiki>"
|This is some text.


To link to a page in another Wikia Wiki, add "c:Wikiname:" to the start of the link. The Wiki name is not necessarily its title, but the subdomain it is located at, as seen in the URL.  The Pikipedia, for example, is at:
This is a new paragraph.
*"<nowiki>[[c:Pikmin:Main Page]]</nowiki>"
|}


=== External Links ===
=== Sections ===
To add an external link (a link to a website outside of Wikia, Mediawiki or Wikipedia), use single square parentheses:
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.
*"<nowiki>[http://web adress]</nowiki>"
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>== Main heading ==
Paragraph.


Again, it is possible to change the displayed text. This time, however, simply leave a space between the address and the text.  The following example displays make [http://pikmin.wikia.com/wiki/Special:Recentchanges the recent changes]:
=== Subheading ===
*"<nowiki>[http://pikmin.wikia.com/wiki/Special:Recentchanges the recent changes]</nowiki>"
Paragraph.


== Signatures ==
==== Minor heading ====
Paragraph.</nowiki></pre>
|
<span style="font-size: 160%; font-family: serif">Main heading</span>
----
Paragraph.


===How to sign a post===
<span style="font-size: 125%; font-weight: bold;">Subheading</span>
To sign your name at the end of your posts, type four tildes.


*"<nowiki>~~~~</nowiki>", for me, produces [[User:Prezintenden|<b><span style="color:Orange">Prez</span></b>]]<b>[[User talk:Prezintenden|<span style="color:Gray">intenden</span>]]</b> 20:35, 29 January 2008 (UTC)
Paragraph.


Three tildes will only display your signature without the time, and five will only show the time without your sig.
<span style="font-size: 105%; font-weight: bold;">Minor heading</span>


=== Custom Signatures ===
Paragraph.
To make a custom signature, first make a subpage to your userpage called '''User:(Your username)/sig.''' On that page, you can add a link to your userpage if you like, and edit your username as you want it to appear in your signature, maybe adding colour, a picture, or a link to your talk page.
|}


After you fixed up your custom sig to your liking, you now (quite obviously) want to display it. To do so, save your creation, then go to your preferences screen in the upper right hand corner. In the "Nickname" field (right under your email address), add '''<nowiki>{{SUBST:User:(yourname)/sig}}</nowiki>''', make sure that "Raw signature" is checked, and save. Now when you sign your name, your sig should be replaced by your custom sig.
A table of contents is automatically generated when there are more than 4 sections in an article.


*Example: Take a look at [[User:Goolix/sig.]] [[User:Prezintenden/sig]], or [[User:Greenpickle/sig]] as examples of how to turn the coding into something nifty. If you find some other user's sig you like, you can take a look at the source by adding "/sig" at the end of the user in question's userpage.
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


Note that this now makes it possible to write <nowiki>{{User:(Your Username)/sig}}</nowiki> on a talk page. This will "update" your signature on pages if you perform changes to your sig. This will not display time, though, but adding <nowiki>~~~~~</nowiki> will make up for that if you wish.
;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.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>A [[Bulborb]] is found in the [[Garden of Hope]].</nowiki></pre>
|A [[Bulborb]] is found in the [[Garden of Hope]].
|}
 
To change the text displayed in the link, place a vertical bar between the link text and the displayed text.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>Caves are [[Randomization|randomly generated]] by arranging [[Cave unit|rooms]].</nowiki></pre>
|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).
 
=== Formatting ===
To make text italic or bold, surround it with 2 or 3 apostrophes.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>''This text is italic.''
 
'''This text is bold.'''
 
'''''This text is italic and bold.'''''</nowiki></pre>
|''This text is italic.''
 
'''This text is bold.'''
 
'''''This text is italic and bold.'''''
|}
 
To make a bulleted list, put an asterisk at the start of each line. Using multiple asterisks will indent the list.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>Enemies:
*Grub-dog family
**Bulborb
**Orange Bulborb
*Breadbug family
**Dwarf Bulborb
**Dwarf Orange Bulborb</nowiki></pre>
|Enemies:
*Grub-dog family
**Bulborb
**Orange Bulborb
*Breadbug family
**Dwarf Bulborb
**Dwarf Orange Bulborb
|}
 
A numbered list is similar, but with # symbols instead.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>Areas:
#The Impact Site
#The Forest of Hope
#The Forest Navel
#The Distant Spring
#The Final Trial</nowiki></pre>
|Areas:
#The Impact Site
#The Forest of Hope
#The Forest Navel
#The Distant Spring
#The Final Trial
|}
 
A paragraph of text can be indented by starting it with a colon. Using multiple colons will indent it further. This is commonly used in talk pages to indicate a reply.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>This is a paragraph.
:This is a reply to that paragraph.
::This is another reply.</nowiki></pre>
|This is a paragraph.
:This is a reply to that paragraph.
::This is another reply.
|}
 
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.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>In ''Pikmin'', Yellow Pikmin can carry [[bomb-rock]]s &amp;ndash; an ability necessary to access certain sections of areas.</nowiki></pre>
|In ''Pikmin'', Yellow Pikmin can carry [[bomb-rock]]s &ndash; an ability necessary to access certain sections of areas.
|}
 
== Images ==
To make an image appear on an article, link to the page containing the image, which will start with <code>File:</code> and end with the image's file format.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>[[File:SSBB Olimar.jpg]]</nowiki></pre>
|[[File:SSBB Olimar.jpg]]
|}
 
This produces an image with no frame and at its original resolution, which is generally not a good thing. To fix these things, put <code>|thumb</code> after the file name, which will turn it into a thumbnail.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>[[File:SSBB Olimar.jpg|thumb]]</nowiki></pre>
|[[File:SSBB Olimar.jpg|thumb]]
|}
 
It is possible to add a caption to images by putting text after another vertical bar.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>[[File:SSBB Olimar.jpg|thumb|Olimar in ''Super Smash Bros. Brawl''.]]</nowiki></pre>
|[[File:SSBB Olimar.jpg|thumb|Olimar in ''Super Smash Bros. Brawl''.]]
|}
 
Finally, it is possible to change the size of images and their position on the page with additional pieces of text before the caption. <code>250px</code> will make the image 250 pixels wide (this number can be changed, and the default size is 200 pixels wide), and <code>left</code> will place the image on the left of the screen (<code>center</code> and <code>right</code> also work, and right is the default position).
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>[[File:SSBB Olimar.jpg|thumb|left|250px|Olimar in ''Super Smash Bros. Brawl''.]]</nowiki></pre>
|[[File:SSBB Olimar.jpg|thumb|left|250px|Olimar in ''Super Smash Bros. Brawl''.]]
|}
 
An alternative way to show images is in a gallery. Galleries display images at small sizes in a grid. To make one, surround a section with <code><nowiki><gallery></nowiki></code> and <code><nowiki></gallery></nowiki></code>, and place each file name (without the <code>File:</code> prefix) on a new line. Image captions can be placed after a vertical bar.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki><gallery>
PuffyBlowhog.png|The Puffy Blowhog in ''Pikmin 2''.
Puffy Blowhog P3 side view.jpg|The Puffy Blowhog in ''Pikmin 3''.
</gallery></nowiki></pre>
|<gallery>
PuffyBlowhog.png|The Puffy Blowhog in ''Pikmin 2''.
Puffy Blowhog P3 side view.jpg|The Puffy Blowhog in ''Pikmin 3''.
</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 are special pages starting with "Template:" that can be included on other pages. This allows similar pieces of MediaWiki code to appear in multiple articles, making consistency between pages easier, among other benefits.
 
To make a template appear in another page, surround its name (without the "Template:" prefix) with 2 curly brackets.
 
As an example, to indicate that an article or a section of an article is a stub (meaning it needs expansion), you can write <code><nowiki>{{stub}}</nowiki></code>.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>{{stub}}</nowiki></pre>
|{{stub|nocat=y}}
|}
 
Many templates have arguments, which are additional pieces of information that influence the template. Arguments are separated by vertical bars.
 
An example of this is the {{tem|date}} template, which is used to display dates in a standardized format. It can have 3 arguments, which in order represent the day, month, and the year.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>{{date|14|September|2010}}</nowiki></pre>
|{{date|14|September|2010}}
|-
|<pre><nowiki>''Pikmin 3 Deluxe'' released on {{date|30|October|2020}}.</nowiki></pre>
|''Pikmin 3 Deluxe'' released on {{date|30|October|2020}}.
|}
 
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 [[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"
!Code!!Result
|-
|<pre><nowiki>{{infobox upgrade
|p3          = y
|name        = Dodge Whistle
|icon        = Dodge Whistle icon.png
|image        = DodgeWhistleArt.png
|caption      = The Dodge Whistle's capsule.
|function    = Allows leaders and Pikmin to dodge
|requirements = Retrieve the capsule
}}</nowiki></pre>
|{{infobox upgrade
|p3          = y
|name        = Dodge Whistle
|icon        = Dodge Whistle icon.png
|image        = DodgeWhistleArt.png
|caption      = The Dodge Whistle's capsule.
|function    = Allows leaders and Pikmin to dodge
|requirements = Retrieve the capsule
}}
|}
 
Template pages will have information on what the template does and how to use it, so check each template's page for more information.


== Categories ==
== Categories ==
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.


If you want to add a page to a category, simply add <nowiki>[[Category:Category's name]]</nowiki>.
{|class="wikitable"
!Code!!Result (see bottom of page)
|-
|<pre><nowiki>[[Category:Help]]</nowiki></pre>
|[[Category:Help]]
|}


If you want to make a link to a category and don't want to add the page to that specific category, add a colon in front of "Category". Shown as a visual, to make [[:Category:2-Player Locations]], type <nowiki>[[:Category:2-Player Locations]]</nowiki>.
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.


== Coding ==
[[File:HotCat demonstration.png|center|800px]]
{{clear}}


These are the most basic and most used coding markups.
== 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>


If a display of wiki coding is wanted, type <nowiki><nowiki>code</nowiki></nowiki> (note that a "'''/'''" is displayed when the tag should be dismissed).
=== 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.
{|class="wikitable"
!Code!!Result
|-
|<pre><nowiki>~~~~</nowiki></pre>
|&mdash; '''{''[[User:Espyo|Espyo]]''<sup>[[User talk:Espyo|T]]</sup>}''' 12:00, January 1, 2020 (EST)
|}


To redirect a page to a different one, write <nowiki>#REDIRECT [[Pagename to be linked to]]</nowiki>
=== 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.


If you do not wish to include something to a page, add <nowiki><includeonly></includeonly></nowiki> tags in front- and after the text.
== 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}}.


To change to '''bold text''', either type 3 <nowiki>'''</nowiki> in front- and behind of the text, or the <nowiki><b></b></nowiki> tags.
==See also==
*{{w|Help:Wikitext|Wikipedia's guide to MediaWiki syntax}}


For ''italic text'', type either 2 <nowiki>''</nowiki>, or <nowiki><i></i></nowiki>
{{help}}