阅读之前
你需要知道的知识包括
- 使用npm/yarn管理项目的依赖
- Hexo的基本使用
前置的一些环境
使你的Hexo支持目录
进入Hexo项目的根目录中,使用npm/yarn添加依赖 1 2 3
| npm install hexo-toc #当你使用npm时 # or yarn add hexo-toc #当你使用yarn时
|
之后在根目录中的_config.yml
添加:
1 2 3 4 5 6 7 8 9 10
| toc: maxDepth: 3 class: toc slugify: transliteration decodeEntities: false anchor: position: after symbol: '#' style: header-anchor
|
进入Hexo项目的根目录中,使用npm/yarn添加依赖 1 2 3
| npm install hexo-generator-feed #当你使用npm时 # or yarn add hexo-generator-feed #当你使用yarn时
|
之后在根目录中的_config.yml
添加:
1 2 3 4 5 6 7 8 9 10
| toc: maxDepth: 3 class: toc slugify: transliteration decodeEntities: false anchor: position: after symbol: '#' style: header-anchor
|
如果已经构建过项目,请先进入项目根目录下运行,清除缓存
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| feed: enable: true type: rss2 path: rss2.xml limit: 140 hub: content: true content_limit: 140 content_limit_delim: ' ' order_by: -date icon: https://avatars.githubusercontent.com/u/23006024?v=4 autodiscovery: true
|
如果已经构建过项目,请先进入项目根目录下运行,清除缓存
尝试构建
然后进行正常的hexo的生成和测试 ``` shell hexo g & hexo s