第一次在简书上写日记
- 简书markdown似乎不支持<kbd>Ctrl</kbd>标签
- 支持LaTeX数学公式
- 支持代码
const person = {name:'Bill Gates', nationality:'USA'};
console.log(person);
- 不支持mermaid流程图
graph LR
A[方形] -->B(圆角)
B --> C{条件a}
C -->|a=1| D[结果1]
C -->|a=2| E[结果2]
F[横向流程图]
- 不支持flow流程图
st=>start: 开始框
op=>operation: 处理框
cond=>condition: 判断框(是或否?)
sub1=>subroutine: 子流程
io=>inputoutput: 输入输出框
e=>end: 结束框
st->op->cond
cond(yes)->io->e
cond(no)->sub1(right)->op