我想要达成这样的效果,如果页面中没有配置permalink
属性,则使用主配置文件里的链接格式,如果配置了该属性,则用该属性作为永久链接
hexo主配置文件_config.yml
中有permalink
这个配置项,默认值为:year/:month/:day/:title
我把这一项的值改成了:year/:month/:day/:title.html
假设有两篇文章
_post/2017-03-05-hello1.md
title: hello1
_post/2017-03-05-hello2.md
title: hello2
permalink: diary/hello.html
2017-03-05-hello1.md
头部没有配置permalink
属性,我希望它的路径就是2017/03/05/hello1.html
,实际生成的路径也刚好如此
2017-03-05-hello2.md
头部有permalink
属性,我希望它的路径是diary/hello.html
,但是实际上生成的路径,只是把:title
部分替换成了页面中配置的permalink
的内容,实际生成的路径是2017/03/05/diary/hello.html.html
不知道该怎么配置才能达到这样的效果,请教各位大神。谢谢
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…