1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| # 安装依赖 npm install hexo-generator-searchdb
# 打开`blog\_config.yml`, 添加 search: path: search.xml field: post content: true format: html # 打开`blog\themes\next\_config.yml`, 找到`local_search:`, 修改为 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
|