Markdown Grammar

1.Title

1
2
3
4
5
6
7
8
# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 6
---
***

Title 1

Title 2

Title 3

Title 4

Title 5
Title 6

2. Reference

1
2
> Reference
>> Nesting Reference

Reference

Nesting Reference


3. Font

1
2
3
4
5
*Italics*
_Italics_
**Bold face**
__Bold face__
~~delete~~

Italics
Italics
Bold face
Bold face
delete


4. List

1
2
3
4
5
6
7
8
9
10
- list1
- nest list1
- nest nest list
+ nest list2
* nest list3
+ list2
* list3
1. list1
1. list2
2. list3
  • list1
    • nest list1
      • nest nest list
    • nest list2
    • nest list3
  • list2
  • list3
  1. list1
  2. list2
  3. list3

1
2
3
4
5
6
7
8
9
[Google](http://google.com)
<http://google.com>
![](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_5BgORGNs3DOYv3eN3oF8mHUpbMrahuwdZV4KedxXCsoHxrh9cQ)

reference link:
[Google][1]
![][2]
[1]: http://google.com
[2]: https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_5BgORGNs3DOYv3eN3oF8mHUpbMrahuwdZV4KedxXCsoHxrh9cQ

Google
http://google.com


6. code

1
2
3
4
5
public class Main() {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

7. form

1
2
3
4
5
6
7
8
9
10
11
|first|second|third|
|--|:--:|--:|
|1|2|3|
|1|2|3|
<!-- don't you think the blank is form is useless... !-->
<!-- this form is also ok ↓ --!>

first|second|third
--|:--:|--:
1|2|3

1|2|3
first second third
1 2 3
1 2 3