From GameStudio Wiki
You can format your text using wiki markup. This consists of normal characters like asterisks, single quotes or equation marks which have a special function in the wiki, sometimes depending on their position. For example, to format a word in italic, you include it in two single quotes like ''this''
Paragraphs
Mediawiki ignores normal line breaks. To start a new paragraph, leave an empty line. You can also start a newline with the HTML tag <br>.
HTML
Some HTML-Tags are allowed in MediaWiki, for example <code>, <div>, <span> and <font>.
Template:Admin tip
| Description
| You type
| You get
|
| applies anywhere
|
| Italify text
| ''italic''
| italic
|
| Bold text
| '''bold'''
| bold
|
| Bold and italic
| '''''bold & italic'''''
| bold & italic
|
| Escape wiki markup
| <nowiki>no ''markup''</nowiki>
| no ''markup''
|
| only at the beginning of the line
|
Headings
of different sizes
|
==level 1==
===level 2===
====level 3====
=====level 4=====
|
Level 1
Level 2
Level 3
Level 4
|
| Horizontal rule
|
----
|
|
| Bullet list
|
* one
* two
* three
|
|
| Numbered list
|
# one
# two
# three
|
- one
- two
- three
|
| Definition list
|
;Definition
:item 1
:item 2
|
- Definition
- item 1
- item 2
|
| Preformatted text (first way)
|
a space at the
beginning of the line
creates
preformatted text
|
a space at the
begin of the line
creates
preformatted text
|
| Preformatted text (second way)
|
<pre> at the
beginning of a collumn
and </pre> at the end
creates preformatted text
|
this is
preformatted text
|