← ClaudeAtlas

obsidian-markdownlisted

Reference for Obsidian Flavored Markdown — wikilinks, embeds, callouts, properties (frontmatter), tags, highlights, math, internal block references, and Obsidian-specific extensions. Consult this skill before writing any wiki page so the syntax renders correctly. Trigger on "obsidian markdown", "wikilink syntax", "callout syntax", "embed syntax", "how to write obsidian markdown", "obsidian formatting", or implicitly whenever the wiki/save/wiki-ingest skills are about to write a page.
tboome33/obsidian-mcp-router · ★ 1 · Data & Documents · score 74
Install: claude install-skill tboome33/obsidian-mcp-router
# obsidian-markdown Quick reference. No multi-step procedure — this is a knowledge skill that other skills consult. ## Wikilinks ``` [[Page Name]] → link to "Page Name.md" in the vault [[Page Name|Display Text]] → link with custom display [[Folder/Page Name]] → fully qualified path (use when name is ambiguous) [[Page#Heading]] → link to a specific heading inside a page [[Page^block-id]] → link to a specific block (block ref) [[Page#^block-id|Display]] → block link with display text ``` Resolution: Obsidian resolves `[[Foo]]` against all pages in the vault, picking the first match. If two pages are named `Foo`, use the folder-prefixed form to disambiguate. ## Embeds Embeds inline content from another page or file: ``` ![[Page Name]] → embed full page (renders as transclusion) ![[Page Name#Heading]] → embed only that section ![[Page Name#^block-id]] → embed only that block ![[image.png]] → embed image (alt: standard markdown ![](image.png)) ![[image.png|400]] → embed image with width 400 ![[file.pdf]] → embed PDF (renders as PDF viewer) ``` ## Frontmatter (properties) YAML at the top of the file. Obsidian's "Properties" feature reads/writes this: ```yaml --- title: "Page Title" tags: [project, active] # or single string: tags: project created: 2026-05-03 status: in-progress related: ["[[Other Page]]"] # wikilinks insid