20230808:此文已过期

一些blog设置

加入封面、顶部图片

  1. 将图片放入\hexo\themes\butterfly\source\img文件夹;

  2. 输入hexo ghexo s,上传public文件夹里面的新图片至服务器的/public_html/img文件夹内对应位置,得到图片链接http://home.ustc.edu.cn/~sdyzzy/img/进一步的位置

  3. 在blog的头文件之中插入图片链接;

  4. 输入hexo ghexo s,上传至服务器,得到带有封面、顶部图片的blog.

hexo常用命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
常见命令:
hexo new "postName" # 新建文章
hexo new page "pageName" # 新建页面
hexo generate # 生成静态页面至public目录
hexo server # 开启预览访问端口(默认端口4000,'ctrl + c'关闭server)
hexo deploy # 部署到GitHub
hexo help # 查看帮助
hexo version # 查看Hexo的版本
缩写命令:
hexo n == hexo new
hexo g == hexo generate
hexo s == hexo server
hexo d == hexo deploy
组合命令:
hexo s -g # 生成并本地预览
hexo d -g # 生成并上传

来自https://zhuanlan.zhihu.com/p/144722437

卸载hexo插件

1
2
3
npm list              # 查看插件名称
npm uninstall 插件名 # 卸载指定插件
删除配置文件PLugins模块中对应的插件设置

永久链接配置

hexo链接持久化终极解决之道