Documentation

Table of Contents

Search Query Syntax

  • Searches across page content, titles, URLs, and code blocks
  • Title matches are boosted (higher ranking)
  • Exact URL matches are included in results
  • Multiple terms use OR logic by default (use + for AND)
  • Words are automatically stemmed (e.g., “running” matches “run”, “runs”, “ran”)

Basic Search

chocolate recipes

Operators

Required terms

+recipe cake chocolate

Only matches pages containing “recipe”

The + operator can be used to make AND logic queries:

+recipe +cake

Excluded terms

recipe -baking

Matches pages with “recipe” but not “baking”

Phrase search:

"getting started"

Matches the exact phrase

Wildcards

develop*

Matches “developer”, “development”, “developing”, etc.

Filters

Bookmark search

* tutorial

Search bookmarked pages matching “tutorial”

Fuzzy search

~ recieve

Will match “receive” despite the typo

Domain filter

domain:example.com tutorial

Search only within example.com

Date filters

tutorial @today          # Today's visits
tutorial @7d             # Last 7 days
tutorial @2w             # Last 2 weeks
tutorial @3m             # Last 3 months
tutorial @1y             # Last year

Combining Filters

You can combine multiple filters:

* domain:docs.example.com +tutorial @30d

Searches bookmarked pages from docs.example.com containing “tutorial” from the last 30 days