还可以在文本下方添加任意数量的 == 号来标识一级标题,或者 -- 号来标识二级标题
要创建段落,请使用空白行将一行或多行文本进行分隔。
I really like using Markdown.
I think I'll use it to format all of my documents from now on.
在一行的末尾添加两个或多个空格,然后按回车键(return),即可创建一个换行(line break)
This is the first line.
And this is the second line.
要加粗文本,请在单词或短语的前后各添加两个星号(asterisks)或下划线(underscores)
Love is bold
要斜体突出单词的中间部分,请在字母前后各添加一个星号,中间不要带空格。
Love is bold
要加粗并用斜体显示单词或短语的中间部分,请在要突出显示的部分前后各添加三个星号,中间不要带空格
Love is bold
要创建块引用,请在段落前添加一个 > 符号
Dorothy followed her through many of the beautiful rooms in her castle.
The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
块引用可以嵌套。在要嵌套的段落前添加一个 >> 符号
Dorothy followed her through many of the beautiful rooms in her castle.
The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
块引用可以包含其他 Markdown 格式的元素。并非所有元素都可以使用
- Revenue was off the chart.
- Profits were higher than ever.
Everything is going according to plan.
要创建有序列表,请在每个列表项前添加数字并紧跟一个英文句点
-
First item
-
Second item
-
Third item
-
Fourth item
数字不必按数学顺序排列,但是列表应当以数字 起始。
-
First item
-
Second item
-
Third item
-
Fourth item
要创建无序列表,请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。
-
First item
-
Second item
-
Third item
-
Fourth item
或
-
First item
-
Second item
-
Third item
-
Fourth item
或
- First item
- Second item
- Third item
-
Fourth item
缩进一个或多个列表项可创建嵌套列表。
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
要将单词或短语表示为代码,请将其包裹在反引号 (`) 中。
At the command prompt, type nano
.
如果你要表示为代码的单词或短语中包含一个或多个反引号,则可以通过将单词或短语包裹在双反引号(``)中。
Use `code` in your Markdown file.
要创建代码块,请将代码块的每一行缩进至少四个空格或一个制表符。
<html>
<head>
</head>
</html>
要创建分隔线,请在单独一行上使用三个或多个星号 (***)、破折号 (---) 或下划线 (___) ,并且不能包含其他内容。
要创建一个超链接 语法格式为:
[连接名](链接地址)
比如
我是李晨泽, 这是我的个人站点 leechense
您可以选择为链接添加标题。当用户将鼠标悬停在链接上时,这将显示为工具提示。要添加标题,请将其放在URL后面的括号中。
我的个人站点是: leechense.
要快速将URL或电子邮件地址转换为链接,请将其括在尖括号中。
URL
https://www.leechenze.com
邮箱地址
[email protected]
I love supporting the **[EFF](https://eff.org)**.
This is the *[Markdown Guide](https://www.markdownguide.org)*.
See the section on [`code`](#code).
I love supporting the EFF.
This is the Markdown Guide.
See the section on code
.
要添加图像,请添加感叹号(!),然后在括号中添加替代文本,并在括号中添加图像资源的路径或URL。您可以选择在括号中的URL之后添加标题。
要添加表,请使用三个或多个连字符(---)创建每列的标题,并使用管道(|)分隔每列。您可以选择在表的任一端添加管道
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
Syntax | Description | Test Text |
---|---|---|
Header | Title | Here's this |
Paragraph | Text | And more |
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```后面指定一种语言即可实现语法高亮;
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
创建定义列表,请在第一行上键入术语。在下一行,键入一个冒号,后跟一个空格和定义
First Term : This is the definition of the first term.
Second Term : This is one definition of the second term. : This is another definition of the second term.
The world is flat. We now know that the world is round.
- Write the press release
- Update the website
- Contact the media
Gone camping! ⛺ Be back soon.
That is so funny! :😊
即使您没有使用方括号,您的Markdown处理器也会自动将其转换为链接
如果您不希望自动链接URL,则可以通过将URL表示为带反引号的代码来删除该链接
http://www.example.com