本文所用的架构或思路参考该文:hexo博客配置-主题管理与配置
插入自己的博客或post的链接
1 | {% post_path slug %} |
post_path hello-world
的方式得到:/2018-08-15-16107.html
post_link hello-world 世界你好!
的效果是:世界你好!
插入代码文件
先修改总的_config.yml
1 | code_dir: ./ #表示从source目录开始 |
然后在要插入代码的md文件里相对source
目录写文件路径
1 | {% include_code [title] [lang:language] path/to/file %} |
插入markdown文件
安装hexo-include-markdown
1 | npm install hexo-include-markdown --save |
在总的_config.yml
里添加
1 | include_markdown: |
在md文件里添加相对于source
的路径
1 | <!-- md path/to/template.md --> |
插入其他文件
插入视频、图片等等,网上可收集的实在多,不赘述。归根结底,要么写Markdown语法,要么参考官网添加tag的方式,即如下网址: