代码块分组
Mr.Hope ... 2022-6-4 小于 1 分钟
插件为你带来了代码块分组支持。
注意
此功能需要 vue@2.7+
,并且它尚不稳定。我们推荐使用 Code Group 作为替代。
# 配置
module.exports = {
plugins: [
[
"md-enhance",
{
// 启用代码块分组
codetabs: true,
},
],
],
};
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# 使用
此功能选项卡功能相同,但它是专门为代码块构建的。
代码选项卡只会渲染 @tab
标记后的代码块,其他 markdown 内容将被忽略。
# 演示
安装 VuePress Theme Hope:
安装 VuePress Plugin Markdown Enhance:
代码
安装 VuePress Theme Hope:
::: code-tabs#shell
@tab pnpm
```bash
pnpm add -D vuepress-theme-hope@next
```
@tab yarn
```bash
yarn add -D vuepress-theme-hope@next
```
@tab:active npm
```bash
npm i -D vuepress-theme-hope@next
```
:::
安装 VuePress Plugin Markdown Enhance:
::: code-tabs#shell
@tab pnpm
```bash
pnpm add -D vuepress-plugin-md-enhance@next
```
@tab yarn
```bash
yarn add -D vuepress-plugin-md-enhance@next
```
@tab:active npm
```bash
npm i -D vuepress-plugin-md-enhance@next
```
:::
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47