# How do I post a markdown document?
1. Go to the top right gallery menu (tiny icon far top right)
2. Go to **New PasteBin**
3. Enter markdown in the main body of the text
4. Select **Markdown Text** for the Text Format
5. Enter other properties as needed.
6. Click save
# This is a markdown example
- you can create a list
- @doctormo made this __markdown support__
- and you can find more information at https://github.com/showdownjs/showdown/wiki
1. Emoji are savailable :+1: :anguished: :atom_symbol:
2. **Bold** __Underline__ ~~strike through~~ *italic*
3. And `Some inline` code.
## Table
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| **col 3 is** | right-aligned | $1600 |
| col 2 is | *centered* | $12 |
| zebra stripes | ~~are neat~~ | $1 |
## Checkmarks
- [ ] You can **make** a checkmark
- [X] Set which ones are done
- [ ] If you want
## Code support
```
x = 0
x = 2 + 2
what is x
```
## Quote
> This is a quote which can be
> Multiple lines
-
Looks nice, Martin! The quote has the same html syntax as the code - is that a syntax error in the markdown, or does it maybe not support quotes? (I wanted to provide some nicer CSS, but it turns out it's not stylable differently from code yet).