Markdown简明语法
markdown语法功能测试
Markdown Syntax 2022.05.04Heading 标题
Heading level 1 一级标题
Heading level 2 二级标题
Heading level 3 三级标题
Heading level 4 四级标题
Heading level 5 五级标题
Heading level 6 六级标题
Font 字体
markdown
_斜体_
**粗体**
~~删除~~
**_粗斜体_**
斜体
粗体
删除
粗斜体
List 列表
Disorder list 无序列表
markdown
- JDK
- JRE
- JVM
- Tomcat
- Netty
- JDK
- JRE
- JVM
- Tomcat
- Netty
Order list 有序列表
md
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 任务列表
markdown
- [x] 吃饭
- [x] 睡觉
- [ ] 写 bug
- 吃饭
- 睡觉
- 写 bug
Emoji 表情
markdown
真好玩! :joy:
真好玩! 😂
提示
更多表情参考表情符号简码列表。
Inline code 行内代码
markdown
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 代码块
markdown
```js
export default {
markdown: {
lineNumbers: true,
},
};
```
js
export default {
markdown: {
lineNumbers: true,
},
}
Link 链接
Markdown 链接
markdown
[Github](http://github.com/rainbowatcher)
原始链接
markdown
<http://www.example.com>
Image 图片
markdown
![Github](https://github.com/fluidicon.png)
Github Flavored Markdown
Container
!NOTE this is a note container
!IMPORTANT this is a warning container
![ERROR] this is a error container
![ERROR] this is a error container
Container 容器
markdown
::: info
消息容器
:::
消息容器
markdown
::: warning
警告容器
:::
警告
警告容器
markdown
::: danger
错误容器
:::
错误容器
markdown
::: details {details} 点击查看详情 {summary}
详情容器
:::
点击查看详情
详情容器
markdown
::: info {details} 点击查看详情 {summary}
详情容器
:::
点击查看详情
详情容器
markdown
::: tip
提示容器
:::
提示容器
markdown
::: warning
::: info
嵌套容器
:::
::: info 内部嵌套容器会自动关闭
markdown
:::: info
this block is closed with 5 markers below
::::: tip
auto-closed block
:::::
this block is closed with 5 markers below
::: tip 自动关闭容器
:
Divider 分割线
markdown
---
Table 表格
居中 | 左对齐 | 右对齐 |
---|---|---|
Rust | Dart | Flink |
Python | Java | Rust |
Node | Javascript | Vue |
Quote 引用
markdown
> 这是一个引用
>
> > 另一个引用
这是一个引用
另一个引用