SeaMist automatically creates a search index which includes a title, summary (desc), content and tags.
The search engine is built on the SQLite FTS5 engine. with FTS5, you can do with SeaMist.
Find documents containing a word:
authentication
By default, multiple words behave as an AND search:
authentication oauth
Finds documents containing both authentication and oauth.
Wrap text in quotes to search for an exact phrase:
"getting started"
Use * to match the beginning of a word:
auth*
Matches:
Require both terms:
authentication AND oauth
Match either term:
oauth OR oidc
Exclude a term:
authentication NOT oauth
Finds documents mentioning authentication but not oauth.
Use parentheses to combine expressions:
(authentication OR oauth) AND security
You can limit your search to one of the fields in the search index, either title, summary, body or tags.
title:getting
or
title:"getting started"
title:oauth body:authentication
Find words close together:
NEAR(authentication oauth)
Or specify a maximum distance:
NEAR(authentication oauth, 5)
(title:oauth OR title:oidc) AND auth*
auth*).*auth) are not supported.