← ClaudeAtlas

obsidian-markdownlisted

Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
aiskillstore/marketplace · ★ 334 · Data & Documents · score 80
Install: claude install-skill aiskillstore/marketplace
# Obsidian Flavored Markdown Skill This skill enables skills-compatible agents to create and edit valid Obsidian Flavored Markdown, including all Obsidian-specific syntax extensions. ## Overview Obsidian uses a combination of Markdown flavors: - [CommonMark](https://commonmark.org/) - [GitHub Flavored Markdown](https://github.github.com/gfm/) - [LaTeX](https://www.latex-project.org/) for math - Obsidian-specific extensions (wikilinks, callouts, embeds, etc.) ## Basic Formatting ### Paragraphs and Line Breaks ```markdown This is a paragraph. This is another paragraph (blank line between creates separate paragraphs). For a line break within a paragraph, add two spaces at the end or use Shift+Enter. ``` ### Headings ```markdown # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 ``` ### Text Formatting | Style | Syntax | Example | Output | |-------|--------|---------|--------| | Bold | `**text**` or `__text__` | `**Bold**` | **Bold** | | Italic | `*text*` or `_text_` | `*Italic*` | *Italic* | | Bold + Italic | `***text***` | `***Both***` | ***Both*** | | Strikethrough | `~~text~~` | `~~Striked~~` | ~~Striked~~ | | Highlight | `==text==` | `==Highlighted==` | ==Highlighted== | | Inline code | `` `code` `` | `` `code` `` | `code` | ### Escaping Formatting Use backslash to escape special characters: ```markdown \*This won't be italic\* \#This won't be a heading 1\. This won't be a list item ``` Common characters to escape: `\*`, `