Table Of Contents

Previous topic

2. Create

Next topic

4. Navigate

This Page

Languages

Previous versions

1.2
1.1

3. Wiki (Markdown) syntax

3.2. Headers

# Main title (H1) #

## Second level (H2) ##

### Third level (H3) ###

or

# Main title (H1)

## Second level (H2)

### Third level (H3)

or

Main title
===========

Subtitle
-----------

3.2.1. Table of contents

[TOC]

renders a table of contents.

3.3. Lists

3.3.1. Ordered lists

1. item 1
2. item 2
3. item 3

renders as:

  1. item 1
  2. item 2
  3. item 3

Sub items must be indented with 4 spaces:

1. item 1
   1. sub item 1
   2. sub item 2
2. item 2
3. item 3

renders as:

  1. item 1
    1. sub item 1
    2. sub item 2
  2. item 2

  3. item 3

3.3.2. Unordered lists

+ Pinkie pie
+ Twilight Sparkle
+ Rainbow Dash

and:

- Pinkie pie
- Twilight Sparkle
- Rainbow Dash

and:

* Pinkie pie
* Twilight Sparkle
* Rainbow Dash

render as:

  • Pinkie pie
  • Twilight Sparkle
  • Rainbow Dash

3.4. Quotes

Quote:

> A quote starts with a >
> This sentence is in the first paragraph
>
> Paragraphs are separated by a new line

renders as:

Quote:

A quote starts with a > This sentence is in the first paragraph

Paragraphs are separated by a new line

3.6. Inline markup

*emphasize* emphasize
_emphasize_ emphasize
**emphasize strongly** emphasize strongly
__emphasize strongly__ emphasize strongly
`code` code

3.7. Images

![Alt text](http://example.com/img.jpg)

3.8. Tables

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell

renders as:

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

3.9. Code

*code*:

    Code examples must be indented with 4 spaces

      **not strong**


     indentations
     and line breaks are preserved

renders as:

code:

Code examples must be indented with 4 spaces

  **not strong**


 indentations
 and line breaks are preserved