以下是使用中的hexo插入flowchart的方法。
安装插件
npm 安装
1
npm install --save hexo-filter-flowchart
修改配置文件
在hexo的_config.yml
文件(根目录的并非主题的)中,添加以下内容:1
2
3
4flowchart:
# raphael: # optional, the source url of raphael.js
# flowchart: # optional, the source url of flowchart.js
options: # options used for `drawSVG`
效果
e.g.
- 内容
1 | ` ` `flow |
flow前后的三个点之间加了空格(环境限制无法嵌套引用flow),实际使用时需要去掉空格
- 效果
e.g.
- 内容
1 | ` ` `flow |
flow前后的三个点之间加了空格(环境限制无法嵌套引用flow),实际使用时需要去掉空格
- 效果
本地环境就能看到效果了。
其他还是执行hexo g
, hexo d
发布网站到master分支上。