Custom container
Mr.Hope ... 2022-1-20 About 1 min
The plugin adds tip, note, info, warning, danger and detail container.
# Config
module.exports = {
plugins: [
[
"md-enhance",
{
// Enable container
container: true,
},
],
],
};
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# Demo
Info
Information container
Note
Note container
Tips
Tip container
Note
Warning container
Warning
Dangerous container
DETAILS
Details container
Custom info
Custom note
Custom tip
Custom warning
Custom danger
::: info
Information container
:::
::: note
Note container
:::
::: tip
Tip container
:::
::: warning
Warning container
:::
::: danger
Dangerous container
:::
::: details
Details container
:::
::: info Custom Title
A custom information container with `code`, [link](#markdown).
```js
const a = 1;
```
:::
::: note Custom Title
A custom note container with `code`, [link](#markdown).
```js
const a = 1;
```
:::
::: tip Custom Title
A custom tip container with `code`, [link](#markdown).
```js
const a = 1;
```
:::
::: warning Custom Title
A custom warning container with `code`, [link](#markdown).
```js
const a = 1;
```
:::
::: danger Custom Title
A custom danger container with `code`, [link](#markdown).
```js
const a = 1;
```
:::
::: details Custom Title
A custom details container with `code`, [link](#markdown).
```js
const a = 1;
```
:::
::: info Custom info
:::
::: note Custom note
:::
::: tip Custom tip
:::
::: warning Custom warning
:::
::: danger Custom danger
:::
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97