hexo推荐插件
hexo推荐插件
小明 Lv6

1、缩短生成的静态页面名

每次从博客分享文章给别人都很苦恼,Hexo 默认生成的链接太长了,而且一旦文章名字改变,链接也跟着改变。有没有什么方法让地址尽量短小精悍,同时永久化呢?

感谢 rozbo/hexo-abbrlink,完美解决此痛点。

使用方法也很简单:

在 Hexo 博客根目录,执行

1
npm install hexo-abbrlink --save

在 _config.yml 配置文件写入

1
2
3
4
5
6
7
# abbrlink config
abbrlink:
alg: crc16 #support crc16(default) and crc32
rep: hex #support dec(default) and hex

# 此处为更改 permalink的值
permalink: p/:abbrlink.html
 评论