markdown语法补充
MAKEDOWN
目录
文档学习
看官方文档的能力很重要,这是一手资料。
记录一下之前忽略的markdown语法
引用
多个段落引用快
> 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
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
嵌套块引用
> 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
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
带有格式的引用
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.
The quarterly results look great!
- Revenue was off the chart.
- Profits were higher than ever.
Everything is going according to plan.
超链接
给链接增加 Title
这是一个链接 [Markdown语法](https://markdown.com.cn "最好的markdown教程")。
这是一个链接 Markdown语法。
网址和Email地址
*<https://markdown.com.cn>
<fake@example.com>*
https://markdown.com.cn
fake@example.com
带格式化的链接
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
.
图片
图片title
![一张图片](https://img2023.cnblogs.com/blog/3492455/202501/3492455-20250105172851253-2033131334.png)
链接图片
[![沙漠中的岩石图片](./image.png "Shiprock")](https://markdown.com.cn)
高级语法
表格
aaaaaaa | bbbbbbbbbb | cccccccc |
---|---|---|
111 | 222 | 333 |
|aaa|bbb|ccc|
|---|---|---|
|111|222|333|
复杂表格
需求:V0.3版本规划 | 优先级 | 任务分解 | 产品负责人 | ||
---|---|---|---|---|---|
功能模块1 | 具体事项1 | 3 | 任务1 | @翠花 | |
具体事项2 | 4 | 任务2 | |||
1 | 任务3 | ||||
功能模块2 | 具体事项1 | 2 | 任务1 | @美美 | |
具体事项2 | 3 | 任务1 | |||
2 | 任务2 | ||||
1 | 任务3 | ||||
4 | 任务4 | ||||
具体事项3 | 1 | 任务1 | |||
备注信息 | |||||
... |
任务列表
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
字体 字号 颜色
我是红色宋体5字号文本
我是#666隶书4号字体文本
我是最大字号8浅绿幼圆文本
<font face = "宋体" color = "red" size = 5> 我是红色宋体5字号文本 </font>
<font face = "隶书" color = "#666" size = 4> 我是#666隶书4号字体文本 </font>
<font face = "幼圆" color = "lightgreen" size = 8> 我是最大字号8浅绿幼圆文本 </font>
分割线 === <hr>
嘻嘻嘻嘻
hahahahha
嘻嘻嘻嘻
###
hahahahha
转义符
显示 特殊符号
**hahaha**
\**hahaha**
锚点
在需要跳转到的位置,使用 HTML 标签定义一个锚点,并为其设置一个唯一的id属性
## 目录
- [1. 引言](#introduction)
- [2. 主要内容](#main-content)
- [2.1 章节一](#chapter-one)
- [2.2 章节二](#chapter-two)
- [3. 结论](#conclusion)
## 1. 引言<a id="introduction"></a>
在本文中,我们将探讨 Markdown 锚点的使用方法和应用场景。通过锚点,我们可以在文档内部创建链接,实现快速跳转和导航。
## 2. 主要内容
### 2.1 章节一<a id="chapter-one"></a>
本章节将详细介绍 Markdown 锚点的定义和引用方法,以及如何在文档中使用它们。
### 2.2 章节二<a id="chapter-two"></a>
在本章节中,我们将通过具体案例展示 Markdown 锚点的应用场景,包括创建文档目录、实现页面内部跳转等。
## 3. 结论<a id="conclusion"></a>
通过本文的介绍和案例展示,我们了解了 Markdown 锚点的使用方法和应用场景。锚点不仅提高了文档的可读性和互动性,还方便了我们快速导航和查找信息。
内容目录
在一些支持