Markdown
A cheatsheet by @rstacruz|Refreshed about 3 years ago.Refresh|View source on Github

Headers

Headers

# h1
## h2
### h3
#### h4
##### h5
###### h6
Header 1
========
Header 2
--------

Emphasis

Emphasis

*italic*
_italic_
**bold**
__bold__
`code`

Lists

Lists

* Item 1
* Item 2
- Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2

Images

Images

![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
[img]: http://foo.com/img.jpg

Code

Code

    4 space indent
    makes a code block
```
code fences
```
```js
codeFences.withLanguage()
```

Blockquotes

Blockquotes

> This is
> a blockquote
>
> > Nested
> > Blockquote

Tables

Tables

| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content     | Other content    |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content