obsidian-markdown

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

Updated Mar 27, 2026
One-click install
npx skills add https://github.com/harunjeylan/opencode-workspace --skill obsidian-markdown-harunjeylan
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: obsidian-markdown
Source: https://github.com/harunjeylan/opencode-workspace/tree/main/skills/obsidian
Command: npx skills add https://github.com/harunjeylan/opencode-workspace --skill obsidian-markdown-harunjeylan

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Writing notes for Obsidian requires syntax beyond standard Markdown—wikilinks, embeds, callouts, properties, and comments—and using the wrong syntax produces broken links or unrendered content in the vault. ## Core Features & Use Cases - Wikilinks and Embeds: Create internal note links with heading and block references, and embed notes, images, PDFs, audio, and search results using ![[...]] syntax. - Callouts and Properties: Add foldable callouts of 13 supported types and YAML frontmatter properties including tags, aliases, and cssclasses. - Use Case: When drafting a project note in an Obsidian vault, generate valid frontmatter with tags, link to related meeting notes with [[Note#Heading]], embed an architecture diagram at a set width, and highlight deadlines in a warning callout. ## Quick Start Create an Obsidian note for my project with frontmatter tags, a link to my meeting notes, an embedded diagram, and a warning callout for the deadline.

Frequently Asked Questions about obsidian-markdown

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

FAQPage Schema
How do I create internal links between Obsidian notes?▼

Use wikilink syntax with double brackets, such as [[Note Name]], to link notes inside a vault. Add a pipe for custom display text like [[Note Name|Display Text]], or target a heading with [[Note Name#Heading]] and a block with [[Note Name#^block-id]].

How do I embed images or PDFs in an Obsidian note?▼

Prefix a wikilink with an exclamation mark to embed content, for example ![[image.png]] or ![[document.pdf#page=3]]. Control image size with a width parameter like ![[image.png|300]] or width and height like ![[image.png|640x480]].

What callout types does Obsidian support?▼

Obsidian supports 13 callout types including note, tip, warning, info, example, quote, bug, danger, success, failure, question, abstract, and todo, each with aliases like hint or important. Add a minus sign after the type for collapsed-by-default or a plus for expanded foldable callouts.

When should I use wikilinks versus Markdown links in Obsidian?▼

Use [[wikilinks]] for notes within the vault because Obsidian tracks renames automatically and updates links. Use standard [text](url) Markdown links only for external URLs outside the vault.

What characters are allowed in Obsidian tags?▼

Obsidian tags can contain letters in any language, numbers (not as the first character), underscores, hyphens, and forward slashes for nesting like #nested/tag. Tags can be written inline in the note body or listed under the tags property in frontmatter.