Skip to content

规范 待更新

一、标签规范

文档版本标签 v1.0

html
<Badge style="background-color:#88FF8888;color:#00BB00" text="v1.0" />

待更新标签 待更新

html
<Badge type="danger" text="待更新" />

更新中标签 更新ing

html
<Badge type="warning" text="更新ing" />

二、代码块

1.jupyter notebook

md
::: details jupyter
```python
# code
```
> output

```python
# code
```
> output
:::
jupyter
python
# code

output

python
# code

output

2.代码块组

md
::: code-group
```python [title1]
# code
```
```python [title2]
# code
```
:::
python
# code
python
# code