Search Function

Firstly, ensure you have these lines inside your hugo.toml file

1[outputs]
2   home = ["HTML", "RSS","JSON"]

Compose implements Fuse js or Algolia to enable search functionality. By default Fuse is applied. Algolia can be enabled by adding this settings to config/_default/params.toml file

1# search
2[search]
3on = true
4global = false
5[search.algolia]
6enable = false # if false search will default to fusejs
7id = "Q40WQQX84U" # Application ID
8index = "compose" # Index name
9key = "da87401a458102ec6bbd6cc5e5cf8d95" # Search-Only API Key

Both search engines will display results using the same UI. By choosing the default (.ie fuse js), you will be opting for local search. This way, no additional setup is needed.

Algolia will require you to build and host your index. For those using Github, this theme ships with an algolia github action.

By default, search will return results from the current content section. Searches from the top level section e.g the homepage, will return global results. This way, the results are scoped. You can override this behaviour using this setting

1...
2[search]
3...
4global = false # turn to `true` to enable global search
5...

At the time of this writing, search on these theme takes either of this forms:

This occurs only when the user loads the search page i.e /search/. They can directly navigate to that url. Alternatively, the user can type you search query on the search field and click enter. They will be redirected to the search page which will contain matched results if any.

This behaviour will be obvious as the user types a search query on the search field. All valid search queries, will yield a list of quick links or a simple no matches found. Else, the user will be prompted to continue typing.

Please note that the results under quick links will be a truncated list of the most relevant results. Only a maximum of 8 items will be returned. This number is pragmatic at best if not arbitrary. On the search page, the number is set to 12.

Note that live search on the search page will behave differently than on the other pages. Nonetheles, the pages apply the same live search principle.

Hitting enter while typing on the search page will be moot as that page’s content will live update as you type in the search word / phrase.

Customize search feedback labels

Use the i18n files to do so.

What is a valid search query

A valid search query must be long enough. If the search query can be cast as a float, then it only need contain one or more characters.

Else the search query must be at least 2 characters long.