uBlogger icon indicating copy to clipboard operation
uBlogger copied to clipboard

refactor(lunr): always perform a wildcard search

Open dezounet opened this issue 3 years ago • 0 comments

  1. Enable lunr:

    # config.toml
    [params.search]
      enable = true
      type = "lunr"
      contentLength = 4000
      snippetLength = 200
    
  2. Enable index.json generation by adding "JSON" entry to outputs.home:

    # config.toml
    [outputs]
      home = ["HTML","RSS", "JSON"]
    

Preview

With this PR

image

Before

image

dezounet avatar Jul 04 '21 11:07 dezounet