=== Trac Wiki format ===
'''bold''', '''!''' can be bold too, and '''! '''
''italic''
'''''bold italic'''''
__underline__
{{{monospace}}} or `monospace`
~~strike-through~~
^superscript^
,,subscript,,
= Heading =
== Subheading ==
=== About ''this'' ===
=== Explicit id === #using-explicit-id-in-heading
Line 1[[BR]]Line 2
 * 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
 llama::
  some kind of mammal, with hair
 ppython::
  some kind of reptile, without hair
   (can you spot the typo?)
{{{
def HelloWorld():
print "Hello World"
}}}
My reply text
||Cell 1||Cell 2||Cell 3||
||Cell 4||Cell 5||Cell 6||
 * [http://www.edgewall.com/ Edgewall Software]
 * [wiki:TitleIndex Title Index]
 * [wiki:ISO9000]
{{{
#!python
class Test:

def __init__(self):
   print "Hello World"
if __name__ == '__main__':
Test()
}}}