Skip to content
Free · No signup · Instant

Obsidian Markdown Guide

Every Obsidian markdown feature in one place. 35+ features with copy-paste syntax and live previews.

35+ featuresWiki links & calloutsUpdated 2026Free forever

Quick Reference

All Obsidian markdown syntax at a glance — standard + Obsidian-specific extensions.

FeatureSyntax
Bold**text**
Italic*text*
Bold Italic***text***
Strikethrough~~text~~
Highlight==text==
Inline Code`code`
Heading# H1 ... ###### H6
External Link[text](url)
Wiki Link[[Note Name]]
Alias Link[[Note|Display]]
Code Block```lang\ncode\n```
Unordered List- item
Task List- [ ] task
Blockquote> text
Callout> [!type] Title
Embed Note![[Note Name]]
Embed Image![[image.png]]
Table| a | b |
Tag#tag
Comment%%hidden%%
Footnote[^1]
Math$inline$ $$block$$

Text Formatting

Standard markdown formatting plus Obsidian's highlight syntax.

Bold

Strong emphasis with double asterisks

My Note.md
bold text

Italic

Emphasis with single asterisks or underscores

My Note.md
italic text

Bold Italic

Combined emphasis

My Note.md
bold italic text

Strikethrough

Crossed-out text with double tildes

My Note.md
strikethrough text

Highlight

Highlighted text with double equals (Obsidian-specific)

My Note.md
highlighted text

Inline Code

Monospace text within a sentence

My Note.md
inline code

Code

Inline code, fenced blocks with syntax highlighting for 200+ languages.

Inline Code

Short code within a sentence

My Note.md
Use npm install to start

Fenced Code Block

Multi-line code with triple backticks

My Note.md
const vault = 'My Vault'\nconsole.log(vault)

Syntax Highlighting

Add language name for colored code

My Note.md
def greet(name):\n return f"Hello, {name}!"

Lists

Unordered, ordered, nested, and interactive task lists with checkboxes.

Unordered List

Bullet points with dashes, asterisks, or plus signs

My Note.md
  • First item
  • Second item
  • Third item

Ordered List

Numbered items

My Note.md
  1. First item
  2. Second item
  3. Third item

Nested List

Indent with tab or spaces for sub-items

My Note.md
  • Parent
    • Child
    • Child
  • Another parent

Task List

Interactive checkboxes — click to toggle in Live Preview

My Note.md
  • ☑ Write the draft
  • ☑ Add wiki links
  • ☐ Review and publish

Blockquotes & Callouts

Standard blockquotes plus Obsidian's 12+ styled callout types with optional folding.

Blockquote

Quoted text with greater-than sign

My Note.md
This is a blockquote

Nested Blockquote

Multiple levels of quoting

My Note.md
First level
Nested quote
Deeply nested

Callout — Info & Warning

Styled callouts with type, icon, and color

My Note.md
ℹ️ Info — Good to know
This is an informational callout.
⚠️ Warning — Watch out
This action has consequences.

Foldable Callout

Collapsible with + (open) or - (collapsed)

My Note.md
❓ FAQ — Frequently Asked Questions
Click to collapse this section.
It starts expanded because of the +.

Embeds & Transclusions

Embed notes, images, and specific sections from other files — unique to Obsidian.

Embed Note

Transclude another note's content inline

My Note.md
📄 Embedded from Meeting Notes
The embedded note's content appears here, updating live when the source changes.

Embed Image

Display an image from vault attachments with optional size

My Note.md
[Image: photo.png]
Second example resized to 400px width

Embed Section

Embed only a specific heading or block from another note

My Note.md
📄 Embedded from Project Plan > Timeline
Only the Timeline section appears here — not the full note.

Tables

Standard markdown tables. Use the Advanced Tables plugin for tab navigation and auto-formatting.

Basic Table

Pipes for columns, hyphens for header separator

My Note.md
PluginStars
Dataview10K
Templater8K

Column Alignment

Colons in separator for left, center, right

My Note.md
LeftCenterRight
ABC

Obsidian-Specific Features

Tags, comments, footnotes, math, and front matter — features unique to or extended by Obsidian.

Tags

Organize notes with hash tags (no space after #)

My Note.md
#project#status/active#2026

Comment

Hidden text that only shows in Source Mode

My Note.md
[Hidden in preview — visible only in Source Mode]

Footnote

Reference markers that appear at the bottom

My Note.md

This has a footnote1.


  1. Footnote content here.

Math (LaTeX)

Inline and display math with KaTeX rendering

My Note.md

Inline: E = mc²

(-b ± √(b² - 4ac)) / 2a

Front Matter

YAML metadata at the top of a note

My Note.md
title: My Note\ntags: [project, active]\naliases: [My Note Alias]\ncssclass: wide-page

Block Reference

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.

My Note.md

Some important text ^my-block

Meeting Notes > my-block

Unsupported in Obsidian

Features that require plugins or workarounds.

Underline

No native syntax — use HTML <u> tag or install a community plugin

Colored Text

No built-in color syntax — use CSS snippets or the Style Settings plugin

Video Embeds

No native video support — use the Media Extended plugin or link to external video

Custom CSS Inline

Inline style attributes are stripped — use CSS snippets in .obsidian/snippets/ instead

Mermaid (limited)

Basic mermaid diagrams work but complex features and some diagram types may not render correctly

Pro Tips

1Toggle Live Preview & Source Mode

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.

2Quick Switcher for Navigation

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.

3Callout Types

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.
4Resize Embedded Images

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]]
![alt|300](photo.png)
5Block References

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]]
6Heading Links Across Notes

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]]

Frequently asked questions

Everything you need to know.

1

What markdown format does Obsidian use?

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.

Ready to format your markdown?

Paste any markdown into our editor. Preview with professional themes. Export to PDF or HTML.