Wiki Formatting

Font Styles

WikiFormatting currently supports the following font styles
* '''bold'''
 * ''italic''
 * '''''bold italic'''''
 * __underline__
 * ~~strike-through~~
 * ^superscript^
 * ,,subscript,,
This will output the following:
  • bold
  • italic
  • 'bold italic'
  • underline
  • strike-through
  • superscript
  • subscript

Headings

The following can be used to add headings to the pages
= Heading =
== Subheading ==
=== Subsubheading ===
Output:

Heading

Subheading

Subsubheading


Miscellaneous

Four or more dashes will be replaced by a horizontal ruler.
----
Output:

Lists

The wiki supports both ordered/numbered and unordered lists.

Example:

* Item 1
   * Item 1.1
 * Item 2

 1. Item 1
   a. Item 1.a
   a. Item 1.b
      i. Item 1.b.i
      i. Item 1.b.ii
 1. Item 2
And numbered lists can also be given an explicit number:
 3. Item 3

Display:

  • Item 1
    • Item 1.1
  • Item 2

  1. Item 1
    1. Item 1.a
    2. Item 1.b
      1. Item 1.b.i
      2. Item 1.b.ii
  2. Item 2

Note that there must be one or more spaces preceding the list item markers, otherwise the list will be treated as a normal paragraph.