基础用法

1
2
3
public static void main(String[] args) {
System.out.println("Hello World!");
}
box盒子容器

容器里边的内容可以 嵌套 其它标签

查看代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14

{% box color:yellow child:codeblock %}

```java
public static void main(String[] args) {
System.out.println("Hello World!");
}

{% endbox %}


{% box color:green child:tabs box盒子容器 %}
容器里边的内容可以 {% mark color:yellow 嵌套 %} 其它标签
{% endbox %}

语法格式

index.md
1
2
3
{% box [title] [color:color] [child:codeblock/tabs] %}
...
{% endbox %}

属性

属性名 说明
color 容器颜色
child 容器内容类型
title 容器标题