| aliases |
|
|||
|---|---|---|---|---|
| tags |
|
|||
| cssclasses |
|
|||
| status | complete | |||
| created | 2026-04-06 | |||
| related |
|
This note is a compact tour of Obsidian Flavored Markdown using current official syntax. It demonstrates plain Markdown, Obsidian-only extensions, and a few adjacent features that ride on top of Markdown files and properties.
- Internal wikilink: [[Showcase Companion]]
- Wikilink with alias: [[Showcase Companion|companion note]]
- Markdown link to a local note: Companion
- External link: Obsidian Help
- Heading link: [[Showcase Companion#Section Link Target]]
- Block link: [[Showcase Companion#^callout-block]]
- Tag in body text: #obsidian #knowledge-management
This paragraph shows bold, italic, bold italic, ==highlight==, strikethrough, and inline code.
You can also escape formatting when needed: *literal asterisks*, #literal-hash, and 1. not-a-list-item.
- Bullet one
- Bullet two
- Nested bullets also work
- So do mixed styles
- Ordered item
- Another ordered item
- Final ordered item
- Create the note
- Add embeds
- Customize with your own examples
A normal blockquote still works exactly like standard Markdown.
[!note] Standard callout Callouts are one of Obsidian's signature Markdown extensions.
[!tip] Custom title Callouts can contain formatting, lists, links to [[Showcase Companion]], and even embeds.
[!warning]- Folded by default This callout starts collapsed.
[!example]+ Expanded by default This one starts open and can hold multi-line content.
- Embedded note section: ![[Showcase Companion#Section Link Target]]
| Feature | Syntax family | Example |
|---|---|---|
| Internal links | Obsidian | [[Note Name]] |
| Embeds | Obsidian | ![[Note Name]] |
| Footnotes | Markdown | [^1] |
| Math | MathJax | $e^{i\pi} + 1 = 0$ |
| Diagrams | Mermaid | mermaid |
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Obsidian"));![[Showcase Companion#^workflow-block]]
%% This is a comment. It appears in source, but not in reading view. %%![[Showcase Companion]]
![[Showcase Companion#Section Link Target]]
![[Showcase Companion#^workflow-block]]
![[Attachments/obsidian-showcase.svg]]
flowchart LR
Idea["Capture idea"] --> Note["Write Markdown note"]
Note --> Link["Add [[links]]"]
Link --> Graph["See connections grow"]
sequenceDiagram
participant U as User
participant O as Obsidian
U->>O: Create note
U->>O: Add links and properties
O-->>U: Local, searchable knowledge
Inline math works here:
Obsidian supports footnotes in standard Markdown style.1
Comments are hidden in reading view, so the next line is mostly useful in source mode:
%% This sentence exists in the file, but rendered reading view hides it. %%
Markdown inside raw HTML does not render, which is useful to remember when mixing formats:
<div>This **will not** render as bold inside the HTML block.</div>This note has YAML properties at the top. Obsidian uses those for metadata, filtering, search, and newer database-style workflows such as Bases.
---
status: complete
tags:
- obsidian
- markdown
related:
- "[[Showcase Companion]]"
---- Obsidian Flavored Markdown
- Basic formatting syntax
- Advanced formatting syntax
- Callouts
- Properties
- Introduction to Bases
Footnotes
-
Footnotes are great for side comments, citations, and asides without interrupting the flow. ↩