Help:Wikicode: Difference between revisions

m
Undo revision 624051 by Charizard24 (Talk)everyone knows that, don't put it here
m (Undo revision 624051 by Charizard24 (Talk)everyone knows that, don't put it here)
Line 3: Line 3:
This article explains the basics of wikicode and gives examples of various techniques. Of course, the best way to learn how to do something is usually to find an example of a page which has it and copy the code, modifying as necessary. But remember to preview!
This article explains the basics of wikicode and gives examples of various techniques. Of course, the best way to learn how to do something is usually to find an example of a page which has it and copy the code, modifying as necessary. But remember to preview!


Pokémon is the best
==Text Formatting==
===Bolding===
To make text bold, place <nowiki>'''</nowiki> on both sides of the text to be bolded.
 
Example:
 
<code><nowiki>'''Noctowl'''</nowiki></code>
 
Will make:
 
'''Noctowl'''
 
An alternative is using <code><nowiki><b></nowiki>INSERT TEXT HERE<nowiki></b></nowiki></code>.
 
===Italicizing===
To italicize text, place <nowiki>''</nowiki> on both sides of the text to be italicized.
 
Example:
 
<code><nowiki>''Bronzong''</nowiki></code>
 
Will make:
 
''Bronzong''
 
===Blue box===
To put a blue box around a line of text, put a space before the line to have the box.
 
Example:
 
<code>&nbsp;Manaphy</code>
 
Will make:
 
Manaphy
 
===Indenting===
To indent a line of text, put a colon before the line to be indented.
 
Example:
 
<code><nowiki>:Goldenrod City</nowiki></code>
 
Will make:
 
:Goldenrod City
 
More colons can be added to make the spacing large, but it is recommended to only use this in talk pages and to restart the line of colons after 6.


==Links==
==Links==
22,508

edits