请问 hexo 有没有插件, 可以在 markdown 文件被解析为 html 文件之后, 将 markdown 源文件复制到 html 文件所在的文件夹, 这样可以方便别下载 markdown 源文件。
1
qiguai2017 2021-01-20 20:42:41 +08:00
自己写扩展
|
2
hgjian OP @qiguai2017 #1 谢谢回复,我不知道在哪里写哦,所以才来请教。
|
3
alexkuang 2021-01-21 04:46:35 +08:00
|
5
jorneyr 2021-01-21 09:13:54 +08:00
可以自己做,不难:
1. hexo generate 的时候不会把 md 文件复制到 .deploy_git 文件夹,需要自己处理,比如写个脚本复制进去。 2. 给 hexo 的 html 中写个 js 和页面上放个按钮,点击时下载即可 (路径根据上面复制到的位置进行拼接) |