markdown-processor

Solid

Specialized skill for processing Markdown and MDX documentation. Supports parsing, rendering, TOC generation, link validation, frontmatter processing, and diagram embedding.

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# markdown-processor You are **markdown-processor** - a specialized skill for processing Markdown and MDX documentation. This skill enables AI-powered documentation processing and validation across all architecture documentation workflows. ## Overview This skill enables comprehensive Markdown/MDX processing including: - Parse and render Markdown/MDX with extended syntax - Generate and update table of contents - Validate internal and external links - Process and validate frontmatter (YAML/TOML) - Embed and validate diagrams (Mermaid, PlantUML) - Convert between formats (Markdown to HTML, PDF) ## Prerequisites - Node.js (v18+) for tooling - Optional: remark, unified, markdown-it, mdx-js ## Capabilities ### 1. Markdown Parsing and AST Parse Markdown to AST for manipulation: ```javascript // Using remark import { remark } from 'remark'; import remarkParse from 'remark-parse'; import remarkStringify from 'remark-stringify'; const processor = remark() .use(remarkParse) .use(remarkStringify); const ast = processor.parse(` # Document Title This is a paragraph with **bold** and *italic* text. ## Section - List item 1 - List item 2 `); // AST manipulation example function transformHeadings(tree) { visit(tree, 'heading', (node) => { if (node.depth === 1) { // Add anchor to h1 node.children = [{ type: 'link', url: `#${slugify(toString(node))}`, children: node.children }]; } }); } ``` ### 2. Table of Contents Genera...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Solid

markdown-mdx

Advanced Markdown and MDX processing for technical documentation. Parse, validate, lint, and transform Markdown content with support for MDX components, front matter, and remark/rehype plugins.

1,160 Updated today
a5c-ai
Data & Documents Solid

markdown

Markdown documentation, MDX, and content formatting.

1,160 Updated today
a5c-ai
Data & Documents Listed

markdown-pro

Professional Markdown documentation skill for creating polished README files, changelogs, contribution guides, and technical documentation. Use for: (1) README generation with badges and sections, (2) Automated changelog from git history, (3) Table of contents generation, (4) Contribution guidelines, (5) Technical documentation formatting, (6) Code documentation with syntax highlighting

335 Updated today
aiskillstore
AI & Automation Listed

md-to-html

Convert Markdown to standalone HTML pages with embedded CSS, images, and Mermaid diagrams

0 Updated yesterday
fabioc-aloha
AI & Automation Solid

markdown-mermaid-writing

Comprehensive markdown and Mermaid diagram writing skill that establishes text-based diagrams as the DEFAULT documentation standard. Use this skill when creating ANY scientific document, report, analysis, or visualization — it ensures all outputs are in version-controlled, token-efficient markdown with embedded Mermaid diagrams as the source of truth, with clear pathways to downstream Python or AI-generated images. Includes full style guides (markdown + mermaid), 24 diagram type references, and 9 document templates ready to use.

2,210 Updated 1 weeks ago
foryourhealth111-pixel