obsidian-markdown

Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, and properties.

Updated Jan 31, 2026
One-click install
npx skills add https://github.com/adrianasiam19/ATLAS --skill obsidian-markdown-adrianasiam19
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: obsidian-markdown
Source: https://github.com/adrianasiam19/ATLAS/tree/main/.agent/skills/obsidian-markdown
Command: npx skills add https://github.com/adrianasiam19/ATLAS --skill obsidian-markdown-adrianasiam19

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Writing notes for Obsidian requires knowledge of its extended Markdown syntax—wikilinks, embeds, callouts, properties, and comments—that goes beyond standard Markdown. This Skill provides the exact syntax rules so notes render correctly in Obsidian without trial and error. ## Core Features & Use Cases - Wikilinks & Embeds: Create internal note links, heading and block links, and embed notes, images, PDFs, audio, and search results with ![[...]] syntax. - Callouts & Properties: Add foldable and nested callouts of all supported types, plus YAML frontmatter properties like tags, aliases, and cssclasses. - Extended Syntax: Use Obsidian-specific features including comments, highlights, LaTeX math, Mermaid diagrams, footnotes, and nested tags. - Use Case: When drafting a project note in an Obsidian vault, generate a complete document with frontmatter, task lists, a warning callout for deadlines, an embedded architecture diagram, and links to related meeting notes. ## Quick Start Create an Obsidian note about my project with frontmatter tags, a warning callout for the deadline, and wikilinks to my meeting notes.

Frequently Asked Questions about obsidian-markdown

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create wikilinks in Obsidian Markdown?▼

Wikilinks use double brackets like [[Note Name]] to link notes within a vault. Add a pipe for custom display text ([[Note|Text]]), a hash for headings ([[Note#Heading]]), or ^block-id to link a specific block.

How do I embed images or PDFs in Obsidian notes?▼

Prefix any wikilink with an exclamation mark to embed content, such as ![[image.png]] or ![[document.pdf#page=3]]. You can set image width with ![[image.png|300]] and embed note sections with ![[Note#Heading]].

What callout types does Obsidian support?▼

Obsidian supports callout types including note, tip, warning, info, example, quote, bug, danger, success, failure, question, abstract, and todo. Use > [!type] syntax, with a minus sign for collapsed-by-default or plus for expanded foldable callouts.

Does Obsidian frontmatter support custom properties?▼

Yes, Obsidian frontmatter supports custom properties of types text, number, checkbox, date, date-time, list, and links. Default properties are tags, aliases, and cssclasses, but any custom key like status or rating can be added.

When should I use wikilinks instead of Markdown links in Obsidian?▼

Use wikilinks for notes inside the vault because Obsidian automatically updates them when notes are renamed. Reserve standard Markdown links [text](url) for external URLs only.