Markdown简明语法
markdown语法功能测试
Heading 标题
Heading level 1 一级标题
Heading level 2 二级标题
Heading level 3 三级标题
Heading level 4 四级标题
Heading level 5 五级标题
Heading level 6 六级标题
Font 字体
_斜体_
**粗体**
~~删除~~
**_粗斜体_**
斜体
粗体
删除
粗斜体
List 列表
Disorder list 无序列表
- JDK
- JRE
- JVM
- Tomcat
- Netty
- JDK
- JRE
- JVM
- Tomcat
- Netty
Order list 有序列表
1. JDK
1. JRE
1. JVM
1. Tomcat
1. Netty
---
1. JavaScript
1. Vue
2. React
2. JQuery
3. Bootstrap
- JDK
- JRE
- JVM
- Tomcat
- Netty
- JavaScript
- Vue
- React
- JQuery
- Bootstrap
注意
这里有序列表的缩进是 3 个空格才生效,而无无列表只需要两个空格。
Task list 任务列表
- [x] 吃饭
- [x] 睡觉
- [ ] 写 bug
- [x] 吃饭
- [x] 睡觉
- [ ] 写 bug
Emoji 表情
真好笑! :joy:
真好笑! 😂
提示
更多表情参考表情符号简码列表。
Inline code 行内代码
you can type this command `git clone <repo-addr>` to clone the repository locally.
you can type this command git clone <repo-addr>
to clone the repository locally.
CodeBlock 代码块
```js
export default {
markdown: {
lineNumbers: true,
},
};
```
export default {
markdown: {
lineNumbers: true,
},
};
Link 链接
Markdown 链接
[Github](http://github.com/rainbowatcher)
原始链接
<http://www.example.com>
Image 图片

Container 容器
::: info
消息容器
:::
INFO
消息容器
::: warning
警告容器
:::
WARNING
警告容器
::: danger
错误容器
:::
DANGER
错误容器
::: details
详情容器
:::
详情容器
::: tip
提示容器
:::
TIP
提示容器
::: warning
::: info
嵌套容器
:::
WARNING
INFO
内部嵌套容器会自动关闭
:::: info
this block is closed with 5 markers below
::::: tip
auto-closed block
:::::
INFO
this block is closed with 5 markers below
TIP
自动关闭容器
Divider 分割线
---
Table 表格
居中 | 左对齐 | 右对齐 |
---|---|---|
Rust | Dart | Flink |
Python | Java | Rust |
Node | Javascript | Vue |
Quote 引用
> 这是一个引用
>
> > 另一个引用
这是一个引用
另一个引用
- Heading 标题
- Heading level 2 二级标题
- Heading level 3 三级标题
- Font 字体
- List 列表
- Disorder list 无序列表
- Order list 有序列表
- Task list 任务列表
- Emoji 表情
- Inline code 行内代码
- CodeBlock 代码块
- Link 链接
- Markdown 链接
- 原始链接
- Image 图片
- Container 容器
- Divider 分割线
- Table 表格
- Quote 引用