Header DocSearch Module

On this page

DocSearch is a free online search service for open source documentation sites.

Modulegithub.com/hbstack/header/modules/docsearch
Repository⭐ Please consider giving a star if your like it.
Stars
Version
Used by
Requirements
License
UsageSee how to use modules.

You need to apply and waiting for approval.

Site Parameters

Once your request was approved, you’ll be emailed with the necessary information to set up the DocSearch module.

NameTypeRequiredDefaultDescription
api_keystringY-The API key.
app_idstringY-The App name.
debugboolean--Whether to enable debug mode.
index_namestringY-The index name.

params.toml

1[docsearch]
2  api_key = 'API_KEY'
3  app_id = 'APP_ID'
4  debug = false
5  index_name = 'INDEX_NAME'

params.yaml

1docsearch:
2  api_key: API_KEY
3  app_id: APP_ID
4  debug: false
5  index_name: INDEX_NAME

params.json

1{
2   "docsearch": {
3      "api_key": "API_KEY",
4      "app_id": "APP_ID",
5      "debug": false,
6      "index_name": "INDEX_NAME"
7   }
8}