博客增加搜索功能

hexo博客可以使用本地搜索实现搜索服务。

参考:

https://blog.csdn.net/zyq55917/article/details/125278500

安装插件

在blog根目录下git bash:

npm install hexo-generator-searchdb

hexo配置

在blog根目录下的_config.yml中增加内容:

1
2
3
4
5
search:
path: search.xml
field: post
content: true
format: html

next配置

在主题之下的_config.yml文件中启用search服务。

只要将enable修改为true即可。

可以选择auto自动搜索或者manual按回车搜索。

1
2
3
4
5
6
7
8
9
10
11
12
local_search:
enable: true
# If auto, trigger search by changing input.
# If manual, trigger search by pressing enter key or search button.
trigger: auto
# Show top n results per article, show all results by setting to -1
top_n_per_article: 1
# Unescape html strings to the readable one.
unescape: false
# Preload the search data when the page loads.
preload: false