Hexo-all-minifier
hexo-all-minifier压缩 Hexo 生成的文件
安装插件命令
npm install hexo-all-minifier --save
然后在博客根目录下的_config.yml
文件中配置插件
all_minifier: true
Hexo-abbrlink
Hexo-abbrlink通过 Hex 算法生成永久的文章链接
安装插件命令
npm install hexo-abbrlink --save
然后在博客根目录下的_config.yml
文件中配置插件
permalink: posts/:abbrlink.html # 此处可以自己设置,也可以直接使用 :/abbrlink
abbrlink:
alg: crc16 #算法: crc16(default) and crc32
rep: dec #进制: dec(default) and hex
以下是算法样例
crc16 & hex https://post.zz173.com/posts/66c8.html
crc16 & dec https://post.zz173.com/posts/65535.html
crc32 & hex https://post.zz173.com/posts/8ddf18fb.html
crc32 & dec https://post.zz173.com/posts/1690090958.html
Hexo-git-backup
Hexo-git-backup备份博客文件到云端
安装插件命令
npm install hexo-git-backup --save
然后在博客根目录下的_config.yml
文件中配置插件
backup:
type: git
repository:
backup: [email protected]:xxx/xxx.git,branchName
配置完成后使用hexo b
或者hexo backup
命令进行备份
hexo-deployer-git
安装插件命令
npm install hexo-deployer-git --save
然后在博客根目录下的_config.yml
文件中配置插件
deploy:
type: git
repository: [email protected]:xxx/xxx
branch: branchName