Create a new note
Obsidian saves your notes automatically as you type. There is no save button and no need to press
Ctrl+S.Format text with Markdown
Obsidian uses Markdown syntax for formatting. You write plain text with lightweight symbols, and Obsidian renders them as formatted output. Here are the most common formatting options:| Format | Syntax | Result |
|---|---|---|
| Heading | # Heading 1 | Large heading |
| Bold | **bold text** | bold text |
| Italic | *italic text* | italic text |
| Inline code | `code` | code |
| Link | [label](url) | Clickable link |
| Bullet list | - item | List item |
# symbol followed by a space turns a line into a heading. Use ## and ### for subheadings.
To make any selected text bold, press Ctrl+B (Cmd+B on macOS).
Editor modes
Obsidian offers two editing modes, which you can switch between from the editor’s context menu or via Settings → Editor:Live Preview
The default mode. Markdown is rendered inline as you type — you see formatted output without leaving the editor. Click any formatted element to edit the underlying Markdown.
Source mode
Shows the raw Markdown source at all times. Useful if you prefer to see every character explicitly, or if you’re troubleshooting formatting.
Explore the sandbox vault
If you want to see examples of all the formatting Obsidian supports before writing your own notes, open the Sandbox vault from the vault switcher. It contains pre-built notes that demonstrate headings, lists, tables, callouts, embeds, and more.Next steps
Link notes
Connect notes together to build a network of ideas.
Basic formatting syntax
Explore the full Markdown syntax Obsidian supports.