Hexo 升级至 5.0 版
1. 升级 HEXO
打开
package.json
, 修改dependencies
项:1
"hexo": "^5.0.0",
更新
1
npm update
2. 改变一:通过npm安装主题
- 安装next主题:
npm install hexo-theme-next
- 设置hexo主配置文件:
1
2# _config.yml
theme: next - 在根目录新建next主题的配置文件
_config.next.yml
:1
2
3
4
5
6
7
8
9# _config.next.yml
scheme: Gemini
footer:
since: 2015
icon:
animated: true
# balabala ... - 然后可以删除原来的主题目录:
themes/next
3. 改变二:代码高亮:PrismJS
新增了 PrismJS 代码高亮支持:
1 | # _config.yml |
试了一下prismjs, 部分代码格式不对, 似乎有bug, 放弃。