博客根目录安装插件

1
npm install hexo-generator-search --save

配置插件

在根目录_config.yml文件添加如下配置

1
2
3
4
5
search:
path: search.xml
field: post
format: html
limit: 10000

在_config.butterfly.yml文件local_search修改为如下配置

1
2
3
4
5
6
7
8
9
local_search:
enable: true
# Preload the search data when the page loads.
preload: false
# 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
CDN:

应用配置文件

本地查看

1
hexo cl;hexo s

确认无误后推送到远程

1
hexo cl;hexo g;hexo d

效果如下