Markdown cheat sheet table

Markdown is a simple way to format text that looks great on any device. It doesn’t do anything fancy like change the font size, color, or type — just the essentials, using keyboard symbols you already know.

Type Or To get
*Italic* _Italic_ Italic
**Bold** __Bold__ Bold
# Heading 1 Heading 1
=========

Heading 1

## Heading 2 Heading 2
---------

Heading 2

### Heading 3 Heading 3
=========

Heading 3

#### Heading 4 Heading 4
---------

Heading 4

##### Heading 5 Heading 5
=========

Heading 5

###### Heading 6 Heading 6
---------

Heading 6

[Link](https://site1.com) [Link][1]

[1]: https://site2.com
Link
![Image](https://a.png) ![Image][1]

[1]: https://b.jpg
Markdown
> Blockquote  
Blockquote

* List
* List
* List

- List
- List
- List

  • List
  • List
  • List

1. One
2. Two
3. Three

1) One
2) Two
3) Three

  1. One
  2. Two
  3. Three
Horizontal rule:

---
Horizontal rule:

***
Horizontal rule:
`Inline code` with backticks   Inline code with backticks
```
# code block
print '3 backticks or'
print 'indent 4 spaces'
```
····# code block
····print '3 backticks or'
····print 'indent 4 spaces'
# code block
print '3 backticks or'
print 'indent 4 spaces'