docsget startedQuick tour

#Quick tour

A two-minute pass over the reading surface, the outline, and search.

#The reading surface

Open a document and it renders on a fixed measure with a serif reading face. Headings, tables, code, math, task lists, and diagrams all render inline:

  • GFM tables and task lists
  • Syntax-highlighted code (Shiki, dual light/dark themes)
  • Math with KaTeX — inline like a2+b2=c2a^2 + b^2 = c^2 and in display blocks
  • Indexing leaves source unchanged; explicit saves write your edits
rust
// Provenance travels with every chunk.
struct Hit {
    chunk_id: String,
    heading_path: Vec<String>,
    start_line: u32,
    end_line: u32,
}

#The outline

Every heading becomes an outline entry that tracks your scroll position. The outline is built from the source headings — not from raw HTML — so it can never be spoofed by markup inside the document.

Press Cmd/Ctrl + K to open the palette. Type a query and pick an intent:

IntentWhat it does
BestHybrid — lexical and semantic, fused
ExactLiteral term matches only
SemanticMeaning-weighted
RecentNewest-modified first
RelatedNotes related to the open document

Press Cmd/Ctrl + P for the file jump.