← Back to list

markmap-render
by DarrellTang
⭐ 0🍴 0📅 Jan 18, 2026
SKILL.md
name: markmap-render description: Render markmap (.mm.md) files to HTML for committing. Finds all .mm.md files in the project and runs npx markmap to generate interactive HTML mind maps.
Markmap Render
Render all .mm.md files to HTML for version control.
When to Use
- After doc-writer creates
.mm.mdfiles - Before committing documentation updates
- When user asks to "render markmaps" or "generate markmap HTML"
Workflow
- Find all
*.mm.mdfiles in project (or specified path) - For each file: run
npx markmap filename.mm.md -o filename.html - Report what was rendered
Usage
Render all markmaps in project:
/markmap-render
Render in specific directory:
/markmap-render docs/
Commands
Find files:
find . -name "*.mm.md" -type f
Render single file:
npx markmap input.mm.md -o input.html
Render all files:
find . -name "*.mm.md" -exec sh -c 'npx markmap "$1" -o "${1%.mm.md}.html"' _ {} \;
Output
Report format:
Rendered markmaps:
- docs/architecture.mm.md → docs/architecture.html
- docs/platform.mm.md → docs/platform.html
Total: 2 files
Prerequisites
Markmap CLI must be available. Install if needed:
npm install -g markmap-cli
Or use npx (no install required):
npx markmap
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon