!Caption

''Example:''

 !Caption1
 !!Caption2
 !!!Caption3

''Result:''

!Caption1
!!Caption2
!!!Caption3


!Paragraph

''Example:''

 This is a paragraph.
 
 This is second parapraph.

''Result:''

This is first parapraph.

This is second parapraph.


!Link
!!Wiki Name

''Exmaple:''

 Click front page -> FrontPage.

''Result:''

Click front page -> FrontPage.


!!Bracket Name

''Exmaple:''

 Click this page (non-autolinked) -> Newpage.
 
 Click this page (non-autolinked) -> [[Newpage]].

''Result:''

Click this page (non-autolinked) -> Newpage.

Click this page (non-autolinked) -> [[Newpage]].

!!URL
''Exmaple:''

 http://www.google.com/

''Result:''

http://www.google.com/


!List
!!Ordered List
''Exmaple:''

 * item
 ** nested item
 *** more nested item

''Result:''

* item1
** nested item
*** more nested item

!!Unordered List
''Exmaple:''

 # item 1
 # item 2
 ## nested item 1
 ## nested item 2

''Result:''

# item 1
# item 2
## nested item 1
## nested item 2


!!Definition List
''Exmaple:''

 :CGIKit: Web application framework.
 :TapKit: Object-Relational mapping database framework.
 :WebObjects: Web application server inspiring the above frameworks.

''Result:''

:CGIKit: Web application framework.
:TapKit: Object-Relational mapping database framework.
:WebObjects: Web application server inspiring the above frameworks.


!Table
''Exmaple:''

 || Computer  || Maker ||
 || PowerBook || Apple ||
 || ThinkPad  || IBM   ||
 || NetBook   || Psion ||

''Result:''

|| Computer  || Maker ||
|| PowerBook || Apple ||
|| ThinkPad  || IBM   ||
|| NetBook   || Psion ||

!Preformatted Text

''Exmaple:''

  class CoolObject
    def cool?
      true
    end
  end

 {{{puts 'hello'}}}

''Result:''

 class CoolObject
   def cool?
     true
   end
 end

{{{puts 'hello'}}}

!Quotation
''Exmaple:''

 He said:
 
 ""Everything is an object.

''Result:''

He said:

""Everything is an object.

!Resource

This wiki can display and link web server resources (images, text files, etc.).

:&lt;&lt;name&gt;&gt;:display "name" resource.
:&lt;&lt;&lt;name&gt;&gt;&gt;:generate link to "name" resource.

''Exmaple:''

 <<face.png>>
 
 <<<face.png>>>


''Result:''

<<face.png>>

<<<face.png>>>


!Inline
!!Strong
''Exmaple:''

 This is ''very impontant''.

''Result:''

This is ''very impontant''.

!!Code

''Exmaple:''

 Call =run()=.

''Result:''

Call =run()=.
