Help:Editing

(Bullet Lists)
(Added link to MediaWiki Help)
Line 1: Line 1:
-
This is a wiki. This means, depending on your priviledges, you can edit articles. You can use a special syntax to format text, include links and so on.
+
This is a wiki. You can edit the articles. Just make sure to use the special syntax to properly format text, include links and so on.
= Format text =
= Format text =
Line 87: Line 87:
{{demo}}
{{demo}}
</pre>
</pre>
 +
 +
= Further information =
 +
This wiki is powered by MediaWiki. The [http://www.mediawiki.org/wiki/Help:Formatting full formatting help] is therefore available on their website.

Revision as of 21:00, 12 April 2010

This is a wiki. You can edit the articles. Just make sure to use the special syntax to properly format text, include links and so on.

Contents

Format text

Headings

To make headings:

This markup produces
= Header =

Header

== Sub-Header ==

Sub-Header

=== Sub-sub-Header ===

Sub-sub-Header

Font Face

To make bold or italic font:

This markup produces
This is ''italic'' and this is '''bold'''. This is italic and this is bold.

Lists

An asterisk "*" at the start of each line indicates an item in a bullet list:

  • One item
  • and another one

Create a numbered list by adding a hash sign "#" at the start of the line:

  1. First item
  2. Second item
  3. Third item

Code

To make clear text is meant as code or computer in/output just prepend a space at the beginning of the line:

<- here is a space at the beginning of the line.

Creating links

To link to another article in this wiki:

This markup produces
Have a look at our [[new users]] section. Have a look at our new users section.

To link to another namespace, e.g. a category:

This markup produces
Have a look at our [[:Category:Guides]] section. Have a look at our Category:Guides section.

Creating tables

Make a sortable table. This input:

{| class="wikitable sortable" border=1
! col1 !! col2 !! col3
|-
| field1 || field2 || field3
|-
| ZZZ    || AAA    || MMM
|-
|}

Produces:

col1 col2 col3
field1 field2 field3
ZZZ AAA MMM

Templates

Templates allow you to pre-define text and layout that can be included in other pages. Examples are notifications like "This site is a stub" or information boxes for applications that contain certain fields like "name" and "genre". Include a template demo like this:

{{demo}}

Further information

This wiki is powered by MediaWiki. The full formatting help is therefore available on their website.