MA
markdown_expert
Expertise in Markdown structure, AST analysis, and common formatting patterns.
Install
mkdir -p .claude/skills/markdown-expert && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15783" && unzip -o skill.zip -d .claude/skills/markdown-expert && rm skill.zipInstalls to .claude/skills/markdown-expert
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Expertise in Markdown structure, AST analysis, and common formatting patterns.78 charsno explicit “when” trigger
About this skill
Markdown Expert Skill
Use this skill when analyzing, refactoring, or generating Markdown content.
Domain Knowledge
- Structure: Markdown consists of Blocks (Headers, Paragraphs, Lists) and Inline elements (Links, Emphasis, Code).
- AST: Common parsers like
remarkormarkdown-itrepresent Markdown as a tree. - Rules:
- Ensure headers follow a logical hierarchy (no skipping levels).
- Use consistent list marker styles (
-or*). - Validate link syntax and reference-style links.
Task Guidance
- When asked to analyze a document, focus on:
- Reading difficulty.
- Structural consistency.
- Potential for refactoring (e.g., long sections into sub-headers).
- When implementing "Clean Architecture" for Markdown, keep the Domain entities (e.g.,
MarkdownDocument,MarkdownSection) pure and agnostic of any specific parser if possible.