Every Obsidian markdown feature in one place. 35+ features with copy-paste syntax and live previews.
All Obsidian markdown syntax at a glance — standard + Obsidian-specific extensions.
| Feature | Syntax | Notes | |
|---|---|---|---|
| Bold | **text** | Double asterisks | |
| Italic | *text* | Single asterisks or underscores | |
| Bold Italic | ***text*** | Triple asterisks | |
| Strikethrough | ~~text~~ | Double tildes | |
| Highlight | ==text== | Double equals (Obsidian-specific) | |
| Inline Code | `code` | Single backticks | |
| Heading | # H1 ... ###### H6 | Hash + space | |
| External Link | [text](url) | Standard markdown link | |
| Wiki Link | [[Note Name]] | Obsidian internal link | |
| Alias Link | [[Note|Display]] | Custom display text | |
| Code Block | ```lang\ncode\n``` | Triple backticks + language | |
| Unordered List | - item | Dash, asterisk, or plus | |
| Task List | - [ ] task | Interactive checkboxes | |
| Blockquote | > text | Greater-than sign | |
| Callout | > [!type] Title | note, warning, tip, etc. | |
| Embed Note | ![[Note Name]] | Transclusion with ! | |
| Embed Image | ![[image.png]] | From vault attachments | |
| Table | | a | b | | Standard markdown tables | |
| Tag | #tag | Hash without space | |
| Comment | %%hidden%% | Obsidian-specific comments | |
| Footnote | [^1] | Define [^1]: at bottom | |
| Math | $inline$ $$block$$ | LaTeX / KaTeX math |
Standard markdown formatting plus Obsidian's highlight syntax.
Strong emphasis with double asterisks
Emphasis with single asterisks or underscores
Combined emphasis
Crossed-out text with double tildes
Highlighted text with double equals (Obsidian-specific)
Monospace text within a sentence
inline codeSix heading levels, standard links, wiki links, and heading/alias variations.
Six levels from H1 (largest) to H6 (smallest)
Standard markdown link to a URL
Internal link to another note in your vault
Custom display text for internal links
Link to a specific heading in another note
Inline code, fenced blocks with syntax highlighting for 200+ languages.
Short code within a sentence
npm install to startMulti-line code with triple backticks
Add language name for colored code
Unordered, ordered, nested, and interactive task lists with checkboxes.
Bullet points with dashes, asterisks, or plus signs
Numbered items
Indent with tab or spaces for sub-items
Interactive checkboxes — click to toggle in Live Preview
Standard blockquotes plus Obsidian's 12+ styled callout types with optional folding.
Quoted text with greater-than sign
This is a blockquote
Multiple levels of quoting
First levelNested quoteDeeply nested
Styled callouts with type, icon, and color
Collapsible with + (open) or - (collapsed)
Embed notes, images, and specific sections from other files — unique to Obsidian.
Transclude another note's content inline
Display an image from vault attachments with optional size
Embed only a specific heading or block from another note
Standard markdown tables. Use the Advanced Tables plugin for tab navigation and auto-formatting.
Pipes for columns, hyphens for header separator
| Plugin | Stars |
|---|---|
| Dataview | 10K |
| Templater | 8K |
Colons in separator for left, center, right
| Left | Center | Right |
|---|---|---|
| A | B | C |
Tags, comments, footnotes, math, and front matter — features unique to or extended by Obsidian.
Organize notes with hash tags (no space after #)
Hidden text that only shows in Source Mode
Reference markers that appear at the bottom
Inline and display math with KaTeX rendering
Inline: E = mc²
YAML metadata at the top of a note
Add ^block-id at the end of any paragraph to give it a linkable ID. Then reference it from any note with [[Note#^block-id]]. Obsidian auto-suggests block IDs as you type.
Some important text ^my-block
Features that require plugins or workarounds.
No native syntax — use HTML <u> tag or install a community plugin
No built-in color syntax — use CSS snippets or the Style Settings plugin
No native video support — use the Media Extended plugin or link to external video
Inline style attributes are stripped — use CSS snippets in .obsidian/snippets/ instead
Basic mermaid diagrams work but complex features and some diagram types may not render correctly
Press Cmd/Ctrl+E to toggle between Live Preview (renders formatting as you type) and Source Mode (shows raw markdown). Reading View is a third mode for final output.
Press Cmd/Ctrl+O to open the Quick Switcher and jump to any note by typing part of its name. Pair this with [[wiki links]] for fast vault navigation.
Obsidian supports 12+ callout types: note, abstract, info, todo, tip, success, question, warning, failure, danger, bug, example, quote. Each has a unique icon and color.
> [!warning] Be careful > This action cannot be undone.
Add a pipe and pixel width after the image name to resize it. Works for both wiki-style and markdown-style images.
![[photo.png|300]] 
Link to a specific paragraph by adding ^block-id at the end of any line, then reference it with [[Note#^block-id]]. Obsidian auto-suggests block IDs as you type.
Some important text ^my-block See [[Note#^my-block]]
Link to a specific heading in another note with [[Note#Heading]]. Obsidian auto-completes heading names. This also works for embeds: ![[Note#Heading]].
[[Project Plan#Timeline]] ![[Meeting Notes#Action Items]]
Everything you need to know.
Obsidian uses standard CommonMark markdown with several extensions: wiki links ([[note]]), callouts (> [!type]), highlights (==text==), embeds/transclusions (![[note]]), comments (%%text%%), footnotes, math (LaTeX), and tags (#tag). Files are stored as plain .md files in your local vault.
Paste any markdown into our editor. Preview with professional themes. Export to PDF or HTML.