0%

hexo+github笔记

概述

整理一些hexo相关的东西

hexo 相关

常用命令

1
2
3
hexo clean   清理
hexo s -g 编译生成 然后本地预览
hexo d -g 编译生成 然后发布到github

比较好的例子

Alex_McAvoy大佬的博客

主题NexT官网

NexT官网
官网里面的git连接是老项目的已经没有人维护了
git clone https://github.com/iissnan/hexo-theme-next themes/next
请使用
git clone https://github.com/theme-next/hexo-theme-next.git themes/next

hexo 问题列表

问题列表

hexo d 出现 Deployer not found: git

hexo d 出现 Deployer not found: git
这是因为没安装 hexo-deployer-git 插件,在站点目录下输入下面的插件安装就好了:

1
npm install hexo-deployer-git --save

hexo使用theme出现extends ‘_layout.swig‘,import ‘_macro/post.swig‘ as post_template问题

原因是hexo在5.0之后把swig给删除了需要自己手动安装

1
npm i hexo-renderer-swig