Markdown 标题语言
(#)一级标题
(##)二级标题
(###)三级标题
(####)四级标题
(#####)五级标题
(######)六级标题
不同的 Markdown 应用程序处理 # 和标题之间的空格方式并不一致。为了兼容考虑,请用一个空格在 # 和标题之间进行分隔。
Markdown 段落语言
要创建段落,请使用空白行将一行或多行文本进行分隔。
I really like using Markdown.
I think I’ll use it to format all of my documents from now on.
Markdown 换行语法
在一行的末尾添加两个或多个空格,然后按回车键,即可创建一个换行
This is the first line.
And this is the second line.
Markdown 强调语法
通过将文本设置为粗体或斜体来强调其重要性。
粗体(Bold)
要加粗文本,请在单词或短语的前后各添加两个星号(asterisks)或下划线(underscores)。如需加粗一个单词或短语的中间部分用以表示强调的话,请在要加粗部分的两侧各添加两个星号(asterisks)。
I just love **bold text**.
I just love bold text.
斜体(Italic)
Italicized text is the *cat's meow*.
Italicized text is the cat’s meow.
粗体(Bold)和斜体(Italic)
This text is really important.
This text is ***really important***.
Markdown 引用语法
要创建块引用,请在段落前添加一个 > 符号。
Dorothy followed her through many of the beautiful rooms in her castle.
1
| > Dorothy followed her through many of the beautiful rooms in her castle.
|
Markdown 列表语法
有序列表
要创建有序列表,请在每个列表项前添加数字并紧跟一个英文句点。数字不必按数学顺序排列,但是列表应当以数字 1 起始。
- First item
- Second item
- Third item
- Fourth item
1 2 3 4
| 1. First item 2. Second item 3. Third item 4. Fourth item
|
无序列表
要创建无序列表,请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。缩进一个或多个列表项可创建嵌套列表。
- First item
- Second item
- Third item
- Fourth item
1 2 3 4
| - First item - Second item - Third item - Fourth item
|
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
1 2 3 4 5 6
| - First item - Second item - Third item - Indented item - Indented item - Fourth item
|
Markdown 代码语法
要将单词或短语表示为代码,请将其包裹在反引号 (`) 中。
At the command prompt,type nano
转义反引号
如果你要表示为代码的单词或短语中包含一个或多个反引号,则可以通过将单词或短语包裹在双反引号(``)中
Use `code` in your Markdown file.
Markdown 分隔线语法
要创建分隔线,请在单独一行上使用三个或多个星号 (***)、破折号 (—) 或下划线 (___) ,并且不能包含其他内容。
Markdown 链接语法
链接文本放在中括号内,链接地址放在后面的括号中,链接title可选。
超链接Markdown语法代码:超链接显示名
超链接Markdown语法代码:[超链接显示名](超链接地址 "超链接title")
对应的HTML代码:超链接显示名
对应的HTML代码:<a href="超链接地址" title="超链接title">超链接显示名</a>
给链接增加 Title
链接title是当鼠标悬停在链接上时会出现的文字,这个title是可选的,它放在圆括号中链接地址后面,跟链接地址之间以空格分隔。
这是一个链接 Markdown语法。
这是一个链接 [Markdown语法](https://markdown.com.cn "最好的markdown教程")。
网址和Email地址
https://markdown.com.cn
<https://markdown.com.cn>
fake@example.com
<fake@example.com>
Markdown 图片语法
要添加图像,请使用感叹号 (!), 然后在方括号增加替代文本,图片链接放在圆括号里,括号里的链接后可以增加一个可选的图片标题文本。
插入图片Markdown语法代码:![图片demo](/upload/demo_img.png "图片title")。
。