Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档。如果你没接触过Markdown 可以继续往下看,可以快速入门并掌握一些常用的写法。
基本写作
段落:只需在行后面加一个或多个空行
1
2
3
段落1
段落2
标题:在文字前面加#
号
1
2
3
4
# 一个井号 <h1>
## 两个井号 <h2>
...
###### 六个井号 <h6>
引用文字:在文字前面加 >
1
> 引用文字
效果:
这里是引用文字
斜体
1
*斜体*
粗体
1
**粗体**
无序列表
1
2
3
4
5
6
7
* Item
* Item
* Item
- Item
- Item
- Item
有序列表
1
2
3
1. Item 1
2. Item 2
3. Item 3
嵌套列表
1
2
3
4
5
6
7
8
1. Item 1
1. A corollary to the above item.
2. Yet another point to consider.
2. Item 2
* A corollary that does not need to be ordered.
* This is indented four spaces, because it's two spaces further than the item above.
* You might want to consider making a new list.
3. Item 3
行内代码:在文字两头加(`
)
1
行内代码 `<code>` 文字
代码模块:在两头加 (
1
2
\`\`\`
1
2
3
4
5
\`\`\`
**链接**
1
2
3
**图片**
1
2
3
4
5
## GitHub Flavored Markdown
** 删除线 **
Mistaken text.
1
2
3
** 表格 **
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
## 参考
- Markdown 语法说明简体中文版 http://wowubuntu.com/markdown/
- GitHub Flavored Markdown https://help.github.com/articles/github-flavored-markdown/
本文网址: https://pylist.com/topic/84.html 转摘请注明来源