Markdown标题语法
"""
要创建标题,请在单词或短语前面添加井号( # )。# 的数量代表了标题的级别。
例如,添加三个#表示创建一个三级标题(<h3>)(例如:### My Header)。
键盘快捷键:选中文字,然后按ctrl+上方数字键1-6
"""
Markdown段落语法
# 要创建段落,请使用空白行将一行或多行文本进行分隔
Markdown换行语法
# 在一行的末尾添加两个或多个空格,然后按回车键,即可创建一个换行(<br>)。
# 换行(Line Break)用法的最佳实践------推荐<br>
"""
几乎每个 Markdown 应用程序都支持两个或多个空格进行换行,称为 结尾空格(trailing whitespace) 的方式,但这是有争议的,因为很难在编辑器中直接看到空格,并且很多人在每个句子后面都会有意或无意地添加两个空格。由于这个原因,你可能要使用除结尾空格以外的其它方式来换行。幸运的是,几乎每个 Markdown 应用程序都支持另一种换行方式:HTML 的 <br> 标签。
为了兼容性,请在行尾添加“结尾空格”或 HTML 的 <br> 标签来实现换行。
还有两种其他方式我并不推荐使用。CommonMark 和其它几种轻量级标记语言支持在行尾添加反斜杠 (\) 的方式实现换行,但是并非所有 Markdown 应用程序都支持此种方式,因此从兼容性的角度来看,不推荐使用。并且至少有两种轻量级标记语言支持无须在行尾添加任何内容,只须键入回车键(return)即可实现换行。
"""
# love is bold<br> 推荐使用
love is bold
Markdown强调语法
# 粗体(Bold)
"""
要加粗文本,请在单词或短语的前后各添加两个星号(asterisks)或下划线(underscores)。如需加粗一个单词或短语的中间部分用以表示强调的话,请在要加粗部分的两侧各添加两个星号(asterisks)。
"""
# i just love **bold text** 推荐使用
# i just love __bold text__
i just love bold text
i just love bold text
# 斜体(Ltalic)
"""
要用斜体显示文本,请在单词或短语前后添加一个星号(asterisk)或下划线(underscore)。要斜体突出单词的中间部分,请在字母前后各添加一个星号,中间不要带空格。
"""
# a *cat* meow 推荐使用
# a _cat_ meow
a cat meow
a cat meow
# 粗体(Bold)和斜体(Ltalic)
"""
要同时用粗体和斜体突出显示文本,请在单词或短语的前后各添加三个星号或下划线。要加粗并用斜体显示单词或短语的中间部分,请在要突出显示的部分前后各添加三个星号,中间不要带空格。
"""
# this text is ***really important*** 推荐使用
# this text is ___really important___
this text is really important
this text is really important
Markdown引用语法
# 要创建块引用,请在段落前添加一个 > 符号。
Dorothy followed her through many of the beautiful rooms in her castle
# 嵌套块引用
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 格式的元素。并非所有元素都可以使用,你需要进行实验以查看哪些元素有效。
"""
The quarterly results look great!
- Revenue was off the chart.
- Profits were higher than ever.
Everything is going according to plan.
Markdown列表语法
# 有序列表
"""
要创建有序列表,请在每个列表项前添加数字并紧跟一个英文句点。数字不必按数学顺序排列,但是列表应当以数字 1 起始。
"""
- First item
- Secont item
- Third item
- Indented item
- Indented item
- Fourth item
# 无序列表
"""
要创建无序列表,请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。缩进一个或多个列表项可创建嵌套列表。
"""
- First item
- Secont item
- Third item
- First item
- Secont item
- Third item
- First item
- Secont item
- Third item
- Indented item
- Indented item
# 在列表中嵌套其他元素
"""
要在保留列表连续性的同时在列表中添加另一种元素,请将该元素缩进四个空格或一个制表符,如下例所示:
"""
-
This is the first list item
-
Here's the second list item
I need to add another paragraph below the second list item
-
And here's the third list item
-
This is the first list item
-
Here's the second list item
I need to add another paragraph below the second list item
-
And here's the third list item
- First item
- Secont item
- Third item
- Indented item
- Indented item
Markdown代码语法
# 要将单词或短语表示为代码,请将其包裹在反引号 (`) 中。
At the command prompt, type nano
.
# 转义反引号
"""
如果你要表示为代码的单词或短语中包含一个或多个反引号,则可以通过将单词或短语包裹在双反引号(``)中。
"""
# ``Use `code` in your Markdown file.``
Use `code` in your Markdown file.
Markdown分割线语法
"""
要创建分隔线,请在单独一行上使用三个或多个星号 (***)、破折号 (---) 或下划线 (___) ,并且不能包含其他内容。
"""
Try to put a blank line before...
...and after a horizontal rule.
Markdown链接语法
"""
链接文本放在中括号内,链接地址放在后面的括号中,链接title可选。
超链接Markdown语法代码:[超链接显示名](超链接地址 "超链接title")
对应的HTML代码:<a href="超链接地址" title="超链接title">超链接显示名</a>
"""
# > 这是一个链接[Markdown语法](https://markdown.com.cn)
这是一个链接Markdown语法
# 给链接增加Title
"""
链接title是当鼠标悬停在链接上时会出现的文字,这个title是可选的,它放在圆括号中链接地址后面,跟链接地址之间以空格分隔。
"""
# > 这是一个链接[Markdown语法](https://markdown.com.cn "最好的markdown教程")
这是一个链接Markdown语法
# 网址和Email地址
"""
使用尖括号可以很方便地把URL或者email地址变成可点击的链接。
"""
# <https://markdown.com.cn>
# <[email protected]>
# 带格式化的链接
"""
强调链接, 在链接语法前后增加星号。 要将链接表示为代码,请在方括号中添加反引号
"""
# I love supporting the **[EFF](https://eff.org)**.
# This is the *[Markdown Guide](https://www.markdown.com.cn)*.
I love supporting the EFF.
This is the Markdown Guide.
Markdown图片语法
"""
要添加图像,请使用感叹号 (!), 然后在方括号增加替代文本,图片链接放在圆括号里,括号里的链接后可以增加一个可选的图片标题文本。
插入图片Markdown语法代码:![图片alt](图片链接 "图片title")。
对应的HTML代码:<img src="图片链接" alt="图片alt" title="图片title">
"""
# 链接图片
"""
给图片增加链接,请将图像的Markdown 括在方括号中,然后将链接添加在圆括号中。
"""
# [![沙漠中的岩石图片](/assets/img/shiprock.jpg "Shiprock")](https://markdown.com.cn)
Markdown转义字符语法
"""
要显示原本用于格式化 Markdown 文档的字符,请在字符前面添加反斜杠字符 \ 。
"""
# \* Without the backslash, this would be a bullet in an unordered list.
* Without the backslash, this would be a bullet in an unordered list.
标签:Markdown,list,语法,item,添加,链接 From: https://www.cnblogs.com/xuewei95/p/17484509.html