# 引用本地图片
相对路径

路径别名

1
2
3
4
5
2
3
4
5
# 项目内链接
[Home](/) <!-- 跳转到根部的 README.md -->
[foo](/foo/) <!-- 跳转到 foo 文件夹的 index.html -->
[foo heading](./#heading) <!-- 跳转到 foo/index.html 的特定标题位置 -->
[bar - three](../bar/three.md) <!-- 具体文件可以使用 .md 结尾(推荐) -->
[bar - four](../bar/four.html) <!-- 也可以用 .html -->
1
2
3
4
5
2
3
4
5
# 表格
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
1
2
3
4
5
2
3
4
5
# 表情
# 把本文件的标题按照层级展示出来
[[toc]]
1
# 自定义容器
这是一个提示
这是一个警告
这是一个危险警告
点击展开详情
console.log('Hello, VuePress!')
1
# 流程图
@flowstart
cond=>condition: Process?
process=>operation: Process
e=>end: End
cond(yes)->process->e
cond(no)->e
@flowend
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
@flowstart cond=>condition: Process? process=>operation: Process e=>end: End
cond(yes)->process->e cond(no)->e @flowend