Skip to content

Markdown shortcuts

Markdown works as typing shorthand in Orbit: type the syntax and the editor converts it to the rendered block on the spot — you never stare at raw markup.

Type these at the start of an empty line, then press Space or Enter:

To getType
Heading 1#
Heading 2##
Heading 3###
Heading 4####
Bullet list-
Ordered list1.
Task list[]
Quote>
Code block```
Mermaid diagram```mermaid
Callout:::note, :::tip, :::info, :::success, :::warning, or :::danger
Wiki link[[ — a note picker opens; press Enter to insert
Embed a note or drawing![[ — same picker, embeds a live preview

Wiki links connect notes together — see Wiki links for how they resolve and power backlinks.

Collapsible sections have no typing shorthand — insert them from the slash menu or with Turn into (Edit notes). In the file they are stored as :::details[Title] followed by the folded content and a closing :::.

In a list, Tab nests the current item one level deeper and Shift+Tab moves it one level up. Only the selected items move — an item’s own nested children keep their level rather than following it — so lists behave like they do in Word. Select several items and press Tab or Shift+Tab to move them all at once as a single undo step.

Wrap text as you type and the marks apply immediately:

To getType
Bold**text**
Italic*text*
Inline code`text`
Strikethrough~~text~~

Paste markdown text copied from another tool and Orbit converts it into blocks — headings, lists, tables, and code fences all come through rendered. Copying between Orbit notes keeps everything exactly as it was, including table column widths. Press Cmd/Ctrl+Shift+V to paste as plain text instead. To paste a whole document as source, use the Raw markdown dialog instead.

Every note is stored as a plain markdown .md file in your OneDrive or SharePoint library — the block editor is how you edit it, not a proprietary format on top. Open the file outside Orbit and it reads as normal markdown. See Where your notes live.

Up next: Tables — build and reshape tables without touching pipe syntax.