-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
存在以下问题:INFO Generated: categories [null] for post #24
Comments
我想到可能是因为front-matter是空的原因,所以第一次执行hexo g会先给文件写入分类信息,但文件夹这时没有生成,所以要再次写一遍才行。 |
|
确实有这个问题,不过我这里显示的是 “ {
"hexo": {
"version": "5.4.0"
},
"dependencies": {
"hexo": "^5.4.0",
"hexo-abbrlink": "^2.2.1",
"hexo-auto-category": "^0.2.1"
}
} 输出
|
@varm 当前的日志看不出什么原因。 hexo-auto-category/lib/logic.js Lines 45 to 49 in 18a36d0
|
调试了一下,我安装了一个 URL 插件:hexo-abbrlink,它内置了 hexo-auto-category,之前显示 “undefined” 是没有开启它的内置配置。
|
那是不是跟 hexo-abbrlink 有关 |
hexo-abbrlink 生成的 Front-matter:categories 和 自身的 abbrlink 都是对的,大概看着好像也没问题,你可以看下这里:https://github.com/rozbo/hexo-abbrlink/blob/master/lib/logic.js#L75 |
你是不是没配
|
配置了,生成的 markdown 是好的,文件名都有
到了 html 就变了,获取不到分类,链接都是 /uncategorized/25f15880.html,所以我就是有点怀疑 hexo-generator-category,但这是个官方插件,都两年没更新了。 |
log.i(post.permalink) 看看 |
在哪里加 |
随便哪里加加看吧,能访问到post变量的地方 |
在 hexo-generator-archive 里面加了,显示的 |
详细描述:hexo 5.4.0中使用这个插件出现了不会自动生成分类文件夹的问题,不知是我步骤不对还是哪里错了。我尝试后用执行两次hexo g解决了这个问题,结合github action不需要手动执行。但具体原因还未知。详细过程如我博客文章:https://tazyu.xyz/post/986feafd/
The text was updated successfully, but these errors were encountered: