Editor Cheatsheet

Emojis

To enter emoji, type a colon and let the editor autocomplete the emoji short name for you. A full list of available emoji can be found here.

Typography

# Header1
## Header2
* Unordered item1
* Unordered item2
1. Ordered item1
2. Ordered item2

*Emphasized text*

**Bold Text**

*** (Horizontal rule)

> Blockquote

Links

[Google](http://www.google.com)

[Google](http://www.google.com "Google")

…

![Img Description](/path/to/kittens.jpg)

[![Description](http://kittens.com/kitty.jpg)](http://google.com)

Code

```python
print "Hello world"
```
{{ '```python\r print "Hello World"\n```' | markup }}

For a more detailed info visit the official Markdown website