Docodile

Markdown

Docodile supports all basic Markdown syntax.

Headings

    
# Heading level 1

## Heading level 2

### Heading level 3

#### Heading level 4

##### Heading level 5

###### Heading level 6
    
  

Paragraphs

This is a paragraph.

This is a separate paragraph.


Line breaks

This is a line
break within a paragraph.


Emphasis

You can use italics and bold to emphasise parts of text. You can combine bold and italics.

    
You can use _italics_ and **bold** to emphasise parts of text. You can combine **_bold and italics_**.
    
  

Blockquotes

This is a block quote
    
> This is a block quote.
    
  

Lists

Ordered Lists

  1. First item
  2. Second item
  3. Third item
  4. Fourth item
    
1. First item
2. Second item
3. Third item
4. Fourth item
    
  
  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item
    
1. First item
2. Second item
3. Third item
   1. Indented item
   2. Indented item
4. Fourth item
    
  

Unordered lists

    
- First item
- Second item
- Third item
- Fourth item
    
  
    
- First item
- Second item
- Third item
  - Indented item
  - Indented item
- Fourth item
    
  

Code

Inline code

You can inline code snippets.

    
You can inline `code` snippets.
    
  

Code blocks

    
#include 

int main(int argc, char **argv) {
    printf("Hello, World!\n");
}
    
  

Horizontal rules

    
---
    
  

My favourite search engine is Duck Duck Go.