如何搭建 Hexo 博客
官方文档
先决条件
建议使用最新的 hexo 版本和 node 版本
- 安装 git 和 node.js
- 安装 hexo-cli
- 新建一个专属 hexo 的博客文件夹
1 | npm install -g hexo-cli |
配置 Hexo
1 | # 可以是其他目录,这里是 macOS 的 Documents 目录下创建的 hexo 文件夹 |
配置 git 用户与密钥信息
1 | # for Windows |
部署
1 | hexo clean |
使用技巧
在文章中使用本地图片
👍非常实用,极力推荐
1 | vim _config.yml |
新建博客文章
1 | hexo new "paper name" |
新建草稿
1 | hexo new draft "paper name" |
更改主题
🪧目前使用的是 butterfly 主题
- 在 themes 文件夹下 clone 其他优秀的主题
使用 butterfly 主题
1 | git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly |
使用 hexo-theme-matery 主题
1 | git clone https://github.com/blinkfox/hexo-theme-matery.git |
使用 yelee 主题
1 | git clone https://github.com/MOxFIVE/hexo-theme-yelee.git themes/yelee |
加入 README.md
1 | # _config.yml |
文章中添加音乐
1 | # 网易云音乐外链 |
添加评论(目前已经不采用了)
1 | # visit https://github.com/imsun/gitment to download css and js |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 知识碰撞!
评论