站内链接
在写博客中,有时会引用站内的链接,之前因为文章不是很多,说明标题可以直接找到,但是现在文章多了,必然需要使用链接
hexo3.0以上可以直接使用下面的格式1{% post_link hello-world %}
永久链接
安装插件1npm install hexo-abbrlink --save
站点配置文件里:1234permalink: post/:abbrlink.htmlabbrlink: alg: crc32 # 算法:crc16(default) and crc32 rep: hex # 进制:dec(default) and hex
显示的样式为http://localhost:4000/post/f525ac74.html#more
同时为以后方便,新建文章时统一以YYYY-mm-dd
的时间格式开头,方便管理,而文章标题删除标题中的时间
参考: