prinsss / hexo-hide-posts

A plugin to hide specific posts from your Hexo blog and make them only accessible by links. (隐藏 Hexo 文章)
MIT License
197 stars 19 forks source link

请问能支持 hexo-generator-searchdb 吗? #24

Closed tianshuang closed 3 years ago

tianshuang commented 3 years ago

配置了隐藏后本地 search 也搜索不到文章了,在 _config.ymlpublic_generators 中配置了 searchdb 也不起作用。

prinsss commented 3 years ago

可以贴一下 hexo generate --debug 命令的输出吗?(注意移除敏感信息)

prinsss commented 3 years ago

我自己试了一下是没问题的,但需要注意的一点是 hexo-generator-searchdb 它注册的 generator 名字不叫 searchdb,是 xmljson(分别对应不同文件格式)。所以你需要这样配置:

hide_posts:
  public_generators: [archive, xml] # 或者 json
tianshuang commented 3 years ago

可以了,谢谢,我开始就是配置的 searchdb, 可以完善一下 README.md, 😂

prinsss commented 3 years ago

要不是去看了下源码我也没想到它用的是这个名字😹