Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Italics

*Italicised* or _Italicised_

Bold

*Bold* or _Bold_

Strikethrough

~Oh no

Blockquotes

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

Unordered Lists (* or + or -)

* Item
   * Sub item
      * Subsub item
* Item
* Item
* Item

Ordered Lists

1. Item
2. Item
3. Item
    1. Sub Item
    2. Sub Item

Code Blocks

Code is indented by four spaces or a tab.

or

```
print(“Hello World”);
```

Code Spans

To print Hello world, `print “Hello world”`

Syntax Highlighting

```python
 if language == ‘python’:
     show_syntax_highlighting()
```

Horizontal Rules

*** or —

Tables

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

Links

[Link text](http://link.com/ “title ..”)

Images

![Alt text](/path/to/img.jpg “title ..”)