Markdown CheatSheet
====================
# 1. Basic
# H1
## H2
### H3
#### H4
##### H5
###### H6
H1
======
H2
------
*italics* or _italics_.
**bold** or __strong__.
~~Scratch this.~~
# 2. List
1. One
2. Two
3. Three
* One
* Two
* Three
+ One
+ Two
+ Three
- One
- Two
- Three
# 3. Links
[Google](https://www.google.com)
[Google](https://www.google.com "Search Engine")
# 4. Images

# 5. Code
`source code`
```java
package com.mkyong;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class StartApplication {
//...
}
```
```javascript
var s = "markdown";
alert(s);
```
```html
<html>
</html>
```
# 6. Tables
| Header1 | Header2 | Header3 |
| ----- |---------| -----|
| A1 | A2 | A3 |
| B1 | B2 | B3 |
| C1 | C2 | C3 |
# 7. Blockquotes
> line 1
> line 2
> line line line line line line line line line line line line line line line line line line line line line line
# 8. Line
---
***
___
# 9. TOC (level 2 and level 3)
[Table of Contents Extension]
(https://github.com/vsch/flexmark-java/wiki/Table-of-Contents-Extension)
[TOC]
References
======
1. [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)