title: Markdown Guide
一 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:
三 Quote:
https://www.markdownguide.org/basic-syntax/
https://www.w3cschool.cn/lme/edni1snj.html
标签:Markdown,Third,symbol,item,Output,yes,Guide From: https://www.cnblogs.com/kaosay/p/16780013.html