「最短的捷径就是绕远路,绕远路才是我的最短捷径」

搭这个:

hexo:https://github.com/hexojs/hexo

然后搭这个:

hexo-theme-gal:https://github.com/ZEROKISEKI/hexo-theme-gal

布github pages:

https://hexo.io/zh-cn/docs/github-pages.html

看板娘是这个:

https://github.com/stevenjoezhang/live2d-widget

Q&A:

Q:npm刷失败

A:换yarn

Q:无法渲染,包括$red变量和index.html

A:下sass手动渲染

Q:中文报错

A:可以用hexo-abbrlink解决,hexo站点安装hexo-abbrlink:

1
npm install hexo-abbrlink --save

在hexo站点根目录_config.yml修改permalink: :year/:month/:day/:title/配置为:

1
permalink: posts/:abbrlink/        // 官方示例,也可以permalink: :year/:month/:day/:abbrlink/

在hexo站点根目录_config.yml添加配置:

1
2
3
abbrlink:
alg: crc32 #support crc16(default) and crc32
rep: hex #support dec(default) and hex

具体内容看上面那个github项目的说明。