Hexo个人博客NexT主题添加Local Search本地搜索

添加本地自定义站点内容搜索,可以通过文字标题或文字内容关键字搜索出相应文章

  1. 安装 hexo-generator-searchdb,在站点的根目录下执行以下命令:

    1
    $ npm install hexo-generator-searchdb --save

    Click and drag to move

  2. 编辑站点配置文件,新增以下内容到任意位置:

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

    Click and drag to move

  3. 编辑主题配置文件,启用本地搜索功能:

    1
    2
    3
    # Local search
    local_search:
    enable: true

    Click and drag to move

效果

imgClick and drag to move