markdown

Generates GitHub-flavored Markdown documents with frontmatter, headings, tables, and code blocks.

39|14|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/doable-me/Doable --skill markdown-doable-me
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: markdown
Source: https://github.com/doable-me/Doable/tree/main/mcp-servers/markdown-builder/skills
Command: npx skills add https://github.com/doable-me/Doable --skill markdown-doable-me

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Writing well-structured Markdown by hand often leads to inconsistent heading hierarchies, broken tables, and formatting that renders poorly across viewers. This Skill enforces GitHub-flavored Markdown rules so generated .md files are clean, portable, and consistent. ## Core Features & Use Cases - GFM Document Generation: Produces Markdown with proper heading hierarchy, lists, tables, blockquotes, and fenced code blocks with language tags. - Optional YAML Frontmatter: Adds title, date, author, and tags metadata when the document requires it. - Style Guardrails: Prevents common mistakes like skipped heading levels, raw HTML, unicode bullets, and trailing whitespace. - Use Case: Ask the markdown-builder MCP App to draft a technical comparison document, and it outputs a structured .md file with a title, sections, a comparison table, and key takeaways that renders cleanly on GitHub. ## Quick Start Ask the assistant to create a Markdown document on your chosen topic with a comparison table and key takeaways section.

Frequently Asked Questions about markdown

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

FAQPage Schema
How do I create a well-structured Markdown document with AI?▼

Describe the topic and sections you need, and the markdown-builder MCP App generates a .md file following GitHub-flavored Markdown rules. It produces one H1 title, hierarchical sections, lists, tables, and a key takeaways section.

What Markdown flavor does this skill generate?▼

It generates GitHub-flavored Markdown (GFM), supporting tables, fenced code blocks, task lists, autolinks, and strikethrough. The output avoids raw HTML so it renders consistently across viewers.

Does the generated Markdown support YAML frontmatter?▼

Yes, frontmatter with title, date, author, and tags is supported via an optional frontmatter argument. It is omitted for informal documents where metadata is unnecessary.

Why does my Markdown render incorrectly across different viewers?▼

Rendering issues usually come from raw HTML, skipped heading levels, unicode bullets, or trailing whitespace. This skill forbids those patterns and enforces single blank lines between blocks for portable output.

Can I include code snippets with syntax highlighting in the document?▼

Yes, fenced code blocks with a language tag are supported for syntax highlighting, such as python or javascript. Inline code uses single backticks for identifiers like class or method names.