Markdown语言笔记
一 Summary:
Markdown is markup language.
Its makes writing on the web fast and easy.
So let's start.
二 Basic syntax:
1: headings
<!--Markdown code-->
# heading level 1
Output:
heading level 1
2: dont miss space and blank line.
End a line with two or more spaces,and then type return.
3: Unordered lists:
[^_^]: Markdown code:
- Firest item
- Second item
- Third item
Output:
- Firest item
- Second item
- Third item
* Firest item
* Second item
* Third item
Output:
- Firest item
- Second item
- Third item
* [x] This is yes symbol.
Output:
- [x] This is yes symbol.
Output: