Slash Commands

Type / anywhere in the editor to open a menu of insertable blocks. Start typing to filter — for example, /head narrows to headings. Press Enter to insert.

Slash commands work in both the web app and the macOS app. The macOS app has a richer set, including attachment commands and an interactive table picker.

How to use it

  • In the body of any page, type / on a new line or after whitespace.
  • A dropdown appears with available blocks.
  • Type to filter. The match is case-insensitive substring on the command label, so /quote, /Quote, /uote, and /qu all surface the Quote command.
  • Enter inserts. Esc closes the menu. Use arrow keys to pick.

Web app slash commands

These insert the corresponding markdown block:

CommandInserts
Heading 1#
Heading 2##
Heading 3###
Bullet List-
Numbered List1.
Task List- [ ]
Quote>
Code BlockFenced ` block
Divider--- horizontal rule
TableA 2×2 markdown table template
Wikilink[[ (cursor positioned to type the target)
Callout Note> [!note] callout
Callout Warning> [!warning] callout
Callout Tip> [!tip] callout
Toggle> [!toggle] Title collapsible

macOS app slash commands

The macOS app includes everything the web has, plus:

CommandWhat it does
TextPlain paragraph (clears any leading marker)
Callout — Note> [!note] callout
Callout — Warning> [!warning] callout
Callout — Tip> [!tip] callout
Callout — Important> [!important] callout
Callout — Caution> [!caution] callout
Callout — Example> [!example] callout
ToggleCollapsible toggle with a pre-selected title for fast renaming
TableOpens a row × column picker — pick a size and the editor inserts an interactive table
AttachmentFile picker for any supported file type — image, audio, video, PDF, doc, csv, etc.
ImageImage-only file picker (PNG, JPEG, WebP, GIF)
AudioAudio-only file picker (MP3, M4A, AAC, WAV) inserted with a player
VideoVideo-only file picker (MP4, MOV) inserted with a player
PDFPDF file picker — inserts a card linking the PDF

The macOS app also supports the same Heading 1–3, Bullet List, Numbered List, Task List, Quote, Code Block, Divider, and Wikilink commands as the web app.

Tables on macOS

The /table command on macOS opens a 10×10 hover grid. Pick a size — say 4 rows by 3 columns — and an interactive table is inserted. From there you can:

  • Type into any cell directly.
  • Tab and Shift+Tab to move between cells.
  • Enter to insert a new row below.
  • Use the floating toolbar above the table to align columns, add or delete rows or columns, and sort by a column.

Attachments on macOS

The /attachment, /image, /audio, /video, and /pdf commands all open a native file picker. Selected files are stored in _assets/ in your vault and embedded inline. See Attachments & Files.

Filtering tips

  • Type partial matches: /cal narrows to all callouts.
  • Numbers in commands work: /h2 matches Heading 2.
  • Capitalization doesn't matter.

Where to go next