Demonstration of Wiki formatting

Styles and Effects

There are a number of effects to use on ordinary text:

List items

List items appear lines which begin with the * character. There needs to be a space before the item text, otherwise it will be treated as part of the item's format string. For example:

In the above items, the * character in the body of each item was written directly but, at the beginning of a line, you need to use \* to avoid the * character being used to create a list element. Note also that:

Enumerated lists can take the form of ordinary sequences of numbered items:

Various formatting characters can also be used:

Preformatted text

To switch off formatting and display text in a monospaced font, we precede text by a group of three opening braces at the beginning of a line and follow it by a corresponding group of three closing braces at the beginning of a line.

For example, the text

{{{def greeting():
 
    print "Hello!"
}}}

will produce the following result:

def greeting():

    print "Hello!"

Opening and closing braces can be included within preformatted areas but care must be taken to avoid placing three of either at the beginning of a line.