Markdown Syntax in Obsidian
Abstract: A quick reference guide for basic Markdown syntax and its application in Obsidian software.
I. Basic Markdown Syntax
1. Headings
1 | # Heading Level 1 |
| Level | Syntax | Usage |
|---|---|---|
| H1 | # Title |
Main title (one per document) |
| H2 | ## Section |
Major sections |
| H3-H6 | ### Subsection |
Nested subsections |
Tip: Use code blocks or add
\(escape character) before special characters to display them literally.
2. Emphasis
1 | *Italic* or _Italic_ |
| Style | Syntax | Result |
|---|---|---|
| Italic | *text* or _text_ |
text |
| Bold | **text** or __text__ |
text |
| Bold Italic | ***text*** |
text |
| Highlight | ==text== |
==text== (Obsidian) |
| Strikethrough | ~~text~~ |
3. Lists
Ordered List
1 | 1. First item |
Unordered List
1 | - Item 1 |
4. Links
1 | [Link Text](URL) |
| Type | Syntax | Example |
|---|---|---|
| External Link | [Text](url) |
[GitHub](https://github.com) |
| Image |  |
 |
5. Code
Inline Code
1 | Use the `print()` function to output text. |
Code Block
1 | ```python |
Note: Specify the language after the opening backticks for syntax highlighting.
6. Blockquotes
1 | > This is a quoted paragraph. |
Result:
This is a quoted paragraph.
This is a nested quote.
7. Horizontal Rule
1 | --- |
All three create a horizontal divider:
II. Obsidian-Specific Features
1. Internal Links (Wikilinks)
Obsidian uses [[wikilinks]] for linking between notes:
| Link Type | Syntax | Description |
|---|---|---|
| Basic Link | [[Note Title]] |
Link to another note |
| With Alias | [[Note Title|Display Text]] |
Custom display text |
| Section Link | [[Note Title#Section]] |
Link to a heading within a note |
| Block Link | [[Note Title#^block-id]] |
Link to a specific block/paragraph |
| Embed Note | ![[Note Title]] |
Embed entire note content |
| Embed Section | ![[Note Title#Section]] |
Embed specific section |
2. Task Lists
1 | - [ ] Unchecked task |
Result:
- Unchecked task
- Checked task (completed)
3. Callouts
Obsidian supports styled callout blocks for highlighting information:
1 | > [!NOTE] Title |
Callout Behavior Modifiers
| Modifier | Syntax | Behavior |
|---|---|---|
| Expandable (default open) | > [!NOTE]+ |
Expanded by default |
| Collapsible (default closed) | > [!NOTE]- |
Collapsed by default |
| Default | > [!NOTE] |
Non-collapsible |
Available Callout Types
Callout Types Reference
Information:
note- General informationabstract,summary,tldr- Summariesinfo,todo- Information and tasks
Success & Tips:
tip,hint,important- Helpful advicesuccess,check,done- Success states
Questions & Warnings:
question,help,faq- Questionswarning,caution,attention- Warnings
Errors & Issues:
failure,fail,missing- Failuresdanger,error- Critical errorsbug- Bug reports
Other:
example- Examplesquote,cite- Quotations
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.




