引言 给大家介绍一款用于Hexo博客站内搜索文章的插件hexo-generator-search,通过此插件,我们可以根据关键字搜索Hexo博客内的任何文章。下面是插件的安装以及使用操作。
安装插件
npm install hexo-generator-search --save
更改主题配置文件 【Hexo博客|Hexo博客添加站内搜索功能】找到主题文件夹下的\themes\next\_config.yml文件,并添加以下代码:
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
然后重新运行Hexo博客即可
hexo clean
hexo g
hexo s
查看最终实现效果 最终实现效果如下图,我们可以根据关键字搜索文章。
文章图片