语雀示例文章
基础
1.图片
2.表格
字段 | 备注 |
---|---|
name | 名称 |
age | 年龄 |
3.附件
4.状态
布局和样式
1.高亮块
INFO
蓝色背景高亮块
TIP
灰色背景高亮
:::color1 天蓝
:::
:::color2 翠绿
:::
TIP
绿色
WARNING
黄色
:::color3 橙色
:::
DANGER
橙粉
:::color4 粉色
:::
:::color5 紫色
:::
2.折叠块
折叠标题
折叠内容
两列分栏——右
typescript
const a = 1
const a = 1
4.引用
引用文本第一行
引用文本第二行
引用文本第三行
5.分割线
6.表情
😃 🤪
画板类
1.画板
2.思维导图
3.流程图
数据表
程序员专区
1.代码块
typescript
// TypeScript
const test = (post: DocDetail) => {
const newPost = process(post)
return newPost
}
export default test
// TypeScript
const test = (post: DocDetail) => {
const newPost = process(post)
return newPost
}
export default test
java
// Java
@Test
public void test11() {
long start = System.currentTimeMillis();
int a = 0;
for(int i=0;i<1000000000;i++){
try {
a++;
}catch (Exception e){
e.printStackTrace();
}
}
long useTime = System.currentTimeMillis()-start;
System.out.println("useTime:"+useTime);
}
// Java
@Test
public void test11() {
long start = System.currentTimeMillis();
int a = 0;
for(int i=0;i<1000000000;i++){
try {
a++;
}catch (Exception e){
e.printStackTrace();
}
}
long useTime = System.currentTimeMillis()-start;
System.out.println("useTime:"+useTime);
}
2.公式
$ \sum_{i=0}^n i^2 = \frac{(n^2+n)(2n+1)}{6} $