Obsidian Markdown Cheat Sheet & Shortcuts

Markdown Syntax Basics

FeatureSyntax ExampleResult / Notes
Headings# H1
## H2
### H3
Large to smaller headers
Bold**bold text** or __bold__bold text
Italic*italic* or _italic_italic
Bold + Italic***bold italic***bold italic
Strikethrough~~strikethrough~~strikethrough
Inline code`code`code
Code block```language <br> code <br> ```Multiline code block with optional language
Blockquote> quoted text> quoted text
Unordered list- item or * item- item
Ordered list1. item1. item
Checkbox- [ ] task / - [x] done task- [ ] task / - [x] done task
Horizontal rule--- or ***— horizontal line
Link[text](url)text
Internal link[[Note Title]]Links to another note titled “Note Title”
Embed note![[Note Title]]Embed the content of another note
Image![](image-url-or-path)Displays an image

Obsidian Specific Markdown & Features

FeatureSyntax / ShortcutDescription
Internal links[[Note Title]]Create links to other notes
Embed notes![[Note Title]]Embed another note’s full content
Tag#tagnameAdd tags for organization
Aliases in links[[Note Title|Alias]]Link to note but display Alias
FootnotesHere is a footnote[^1]
[^1]: Footnote text
Footnotes
Callouts> [!NOTE] This is a calloutSpecial highlighted block
Math block$$ <br> math code <br> $$LaTeX math block
Inline math$ math code $Inline LaTeX math

Keyboard Shortcuts (Default)

ActionShortcut (Windows/Linux)Shortcut (Mac)
Create new noteCtrl + NCmd + N
Open command paletteCtrl + PCmd + P
Search in vaultCtrl + Shift + FCmd + Shift + F
Toggle sidebarCtrl + ECmd + E
Toggle preview/edit modeCtrl + ECmd + E
Open backlinks paneCtrl + Shift + BCmd + Shift + B
Create new tagType # then textType # then text
Bold selected textCtrl + BCmd + B
Italicize selected textCtrl + ICmd + I
Insert linkCtrl + KCmd + K
Toggle checklistCtrl + Shift + CCmd + Shift + C
Toggle task doneCtrl + Enter (while cursor on task)Cmd + Enter
Open note in new paneCtrl + ClickCmd + Click
Toggle outline paneCtrl + OCmd + O
Split pane vertically/horizontallyCtrl + Shift + V / Ctrl + Shift + HCmd + Shift + V / Cmd + Shift + H

Useful Tips

  • Use [[ to quickly link to existing notes or create new ones.
  • Drag and drop images or files directly into notes to embed them.
  • Use tags (#tag) liberally for easy searching and filtering.
  • Utilize the graph view to visualize connections between your notes.
  • Use the command palette (Ctrl+P / Cmd+P) to quickly access any command.