Context

Obsidian shortcut and formatting reference for writing notes in this vault. For how the vault itself works the note lifecycle, tag vocabulary and frontmatter see Start Here.

Quick access

Essential shortcuts

On Windows/Linux use Ctrl where this says Cmd.

ShortcutAction
Cmd + PCommand palette. Every command, searchable. The one shortcut to remember.
Cmd + OQuick switcher. Jump to any note by name
Cmd + NNew note (lands in 02 - In progress)
Cmd + Shift + FSearch across the whole vault
Cmd + EToggle edit / reading view
Cmd + click a linkOpen the note in a new tab
Cmd + Alt + / Navigate back / forward
Cmd + ,Settings

Commands worth knowing

Type Cmd + P, then the command name:

CommandWhat it does
Insert templateDrops Template_note.md into the current note. Do this first on every new note.
Move file to another folderPromotes a note through the flow without dragging
Rename fileRenames and fixes every link pointing at it
Toggle reading viewSee the note as readers will
Open graph viewVisualise how notes link together
Delete current fileSends it to .trash/ inside the vault, not your OS trash

Typing / in the editor opens the same command list inline.

Text formatting

SyntaxResult
# H1###### H6Headings. One # per note as the title; ## for sections.
**bold**bold
*italic*italic
~~strikethrough~~strikethrough
==highlight==highlight
`inline code`inline code. Use for parameter names, table names, values
```sql```Fenced code block with syntax highlighting
------Horizontal rule (every note opens with one, under the frontmatter)
- itemBullet list
1. itemNumbered list. Use for procedure steps
- [ ] taskCheckbox, for validation checklists
> quoteBlockquote
| tablesSee the tables on this page for the pattern
SyntaxResult
[[Note name]]Link to another note. Start typing after [[ and Obsidian autocompletes. |
| [[Note name|display text]]Link showing different text
[[Note name\#Section]]Link straight to a heading
![[Note name]]Embed the whole other note inline
![[screenshot.png]]Embed an image from 99 - Attachments
#AIF_DATAInline tag, clickable. The tag vocabulary is fixed — see Start Here.
[text](https://url)External link

Always use wikilinks ([[ ]]) between notes, never file paths. Wikilinks survive when a note moves from 02 - In progress to 00 - Knowledge Base (reviewed); paths do not.

Callouts

Use these to make warnings impossible to miss in a runbook:

> [!warning] Destructive step
> 
> This truncates the staging table.

Types available: note, tip, info, success, question, warning, danger, bug, example, quote.

Use a > [!tip] Quick access box, with one [[#section|Section]] link per heading, at the top of any note that has more than one subtopic — see the top of this note for the pattern.