hexo设置搜索
# 安装hexo-generator-searchdb插件
npm install hexo-generator-searchdb --save
1
# 配置
在 blog/_config.yml 文件追加
search:
path: search.xml
field: post
format: html
limit: 10000
content: true
在 blog/themes/hexo-theme-next-master/_config.yml 修改
local_search:
enable: true
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# 点击搜索按钮后弹出搜索图层同时会打开一个空白页
修改 blog/themes/hexo-theme-next-master/layout/_partials/header.swig
将
<a href="javascript:;" class="popup-trigger">
修改为
<a href="#" class="popup-trigger">
1
2
3
4
5
2
3
4
5
上次更新: 2021/02/16, 15:47:09
← hexo hexo配置本地图片→