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
  1. JDK
    1. JRE
    2. JVM
  2. Tomcat
  3. Netty

  1. JavaScript
    1. Vue
    2. React
  2. JQuery
  3. 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,
  },
}

Markdown 链接

[Github](http://github.com/rainbowatcher)

Github

原始链接

<http://www.example.com>

http://www.example.com

Image 图片

![Github](https://github.com/fluidicon.png)

Github

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 表格

居中左对齐右对齐
RustDartFlink
PythonJavaRust
NodeJavascriptVue

Quote 引用

> 这是一个引用
>
> > 另一个引用

这是一个引用

另一个引用