Help:Editing Guide
Discuss8on this wiki
- See also Help:Editing
This page contains useful mark-up and syntax information needed to edit a wiki page.
Contents |
Text Formatting
Edit
| Bolding Text
To bold text, use <b></b> tags, three single quotes, or for whole lines, a semicolon. | <b>Hi!</b>
'''Hi!''' ;Hi!
|
| Underlining Text
To underline text, use <u></u> tags. | <u>Bye!</u>
|
| Striking Text
To strike text, use <s></s> tags. | <s>Hi!</s>
|
| Italicising Text
To italicise text, use <i></i> tags or two single quotes. | <i>Hi!</i>
''Hi!''
|
| Superscripts/Subscripts
Use <sup></sup> for superscripts and <sub></sub> for subscripts. | Hi!<sup>Bye!</sup>
Bye!<sub>Hi!</sub>
|
Other Fonts
|
|
Positioning and Ordering Text
| <div align="center">Bye!</div>
Bye!
*Hi! **Bye! ***Hi! ****Bye!
#Bye! ##Hi! #Bye! ###Hi! ##Bye!
|
| Ignoring Code
Use <nowiki></nowiki> tags to ignore code. | <nowiki><b>Hi!</b></nowiki>
|
Headers
Edit
| To make a header, put equal signs around the text. The more equal signs, the smaller the header.
=The Biggest Header= ==A Smaller Header== ===Even Smaller=== ====Minuscule==== |
Links
Edit
|
Colour in Templates
Edit
|
Table syntax
Edit
Tables always start on a new line with {|. Cells are then added by putting | at the beginning of a new line.
Example:
{|
|Jagex
|Rules
|}
would yield:
| Jagex | Rules |
Of course, it is hard to visually distinguish between the cells in the above simple table. Adding class="wikitable" will rectify that this. Also, a new row of cells can be created by adding |- on a new line.
Example:
{| class="wikitable"
|RuneScape
|Wiki
|-
|Jagex
|Rules
|}
would yield:
| RuneScape | Wiki |
| Jagex | Rules |
Finally, adding in a heading involves starting a new line with ! instead of |, like so:
{| class="wikitable"
!HP Level
!Firebuilding Level
|-
|50
|70
|}
would yield:
| HP Level | Firebuilding Level |
|---|---|
| 50 | 70 |
It is possible to make tables more complex than this, with more columns and rows (and other features).
External links
Edit
- Help:Table - For more information on tables.
- Web colours - For many HTML Web colours.