Markdown to HTML Conversion
Write in Markdown, share as a polished web page — zero dependencies for viewers
Staleness Watch: Recheck external API and tool URLs before release or after upstream changes.
Convert Markdown documents into self-contained HTML files with embedded CSS, base64 images, and Mermaid diagram rendering. Ready for quick-share distribution, offline viewing, print, or email attachment.
When to Use
- Sharing formatted documents without requiring Word or PDF viewers
- Creating self-contained HTML pages for offline distribution
- Generating printable web pages from Markdown sources
- Quick previews of documentation with professional styling
- Email attachments that open in any browser
- Static site generation from Markdown sources
Supported Formatting
| Format |
Status |
Notes |
| Headings |
✅ |
H1-H6 with styled colors |
| Bold/Italic |
✅ |
Standard emphasis |
| Links |
✅ |
Styled with underline on hover |
| Images |
✅ |
Base64 embedded or linked |
| Code blocks |
✅ |
Syntax highlighting, monospace font |
| Inline code |
✅ |
Background highlight |
| Tables |
✅ |
Striped rows, header styling |
| Blockquotes |
✅ |
Left border, italic style |
| Lists |
✅ |
Ordered, unordered, nested |
| Task lists |
✅ |
Checkbox rendering |
| Mermaid diagrams |
✅ |
PNG or table fallback |
| SVG |
✅ |
Inline or base64 embedded |
| Horizontal rules |
✅ |
Styled dividers |
| Footnotes |
✅ |
Via pandoc |
| Math (KaTeX) |
⚠️ |
Requires --katex flag |
Key Features
| Feature |
Details |
| Style presets |
professional, academic, minimal, dark |
| Self-contained |
All CSS embedded in <style> block, no external deps |
| Image embedding |
Local images converted to base64 data URIs |
| Mermaid support |
PNG rendering or table fallback for diagrams |
| Print-ready |
CSS @media print rules included |
| TOC generation |
Optional table of contents via --toc |
| Frontmatter |
Extracted for title, stripped from output |
Usage
# Basic conversion (professional style)
node .github/muscles/md-to-html.cjs report.md
# Academic style with TOC
node .github/muscles/md-to-html.cjs thesis.md --style academic --toc
# Dark mode output
node .github/muscles/md-to-html.cjs docs.md --style dark
# Mermaid diagrams rendered as PNG (high quality)
node .github/muscles/md-to-html.cjs architecture.md --mermaid-png
# Custom output path
node .github/muscles/md-to-html.cjs README.md output/readme.html
# Dry run (validate without generating)
node .github/muscles/md-to-html.cjs report.md --dry-run
# Debug mode (save preprocessed markdown)
node .github/muscles/md-to-html.cjs report.md --debug
Options Reference
| Option |
Default |
Description |
--style PRESET |
professional |
Style preset: professional, academic, minimal, dark |
--toc |
off |
Generate table of contents from headings |
--embed-images |
true |
Convert local images to base64 data URIs |
--no-embed-images |
- |
Keep image paths as-is (external references) |
--strip-frontmatter |
true |
Remove YAML frontmatter from output |
--mermaid-png |
off |
Render Mermaid as PNG (requires mmdc) |
--mermaid-fallback |
default |
Convert Mermaid to table representation |
--debug |
off |
Save preprocessed markdown as _debug_combined.md |
--dry-run |
off |
Validate only, no HTML output |
Style Presets
| Preset |
Font |
Max Width |
Colors |
Best For |
| professional |
Segoe UI |
900px |
Blue headings, white bg |
Business docs, reports |
| academic |
Palatino Linotype |
750px |
Dark headings, cream bg |
Papers, theses |
| minimal |
Inter |
800px |
Black/gray, white bg |
Clean, modern pages |
| dark |
Segoe UI |
900px |
Light text, dark bg |
Dark mode preference |
Mermaid Diagram Support
| Diagram Type |
PNG Mode |
Fallback Mode |
| Flowchart |
✅ Full render |
✅ Table |
| Sequence |
✅ Full render |
✅ Table |
| Class |
✅ Full render |
✅ Table |
| State |
✅ Full render |
✅ Table |
| ER |
✅ Full render |
✅ Table |
| Gantt |
✅ Full render |
⚠️ Limited |
| Pie |
✅ Full render |
✅ Table |
| Journey |
✅ Full render |
⚠️ Limited |
PNG Mode (--mermaid-png): Requires mermaid-cli (mmdc). Renders at scale 8, 2400px width for crisp output. Diagrams are embedded as base64 PNGs.
Fallback Mode (default): No external dependencies. Converts diagram syntax to an ASCII table representation suitable for text-only viewing.
Print Styling
HTML output includes @media print CSS rules:
- Page breaks before H1 headings
- No background colors (ink-friendly)
- Link URLs shown after text
- Code blocks with borders instead of background
- Proper margins for binding
Batch Processing
# Convert all markdown files in a directory
for file in docs/*.md; do
node .github/muscles/md-to-html.cjs "$file" --style professional
done
# PowerShell equivalent
Get-ChildItem docs/*.md | ForEach-Object {
node .github/muscles/md-to-html.cjs $_.FullName --style professional
}
Troubleshooting
| Problem |
Cause |
Solution |
| "pandoc not found" |
pandoc not installed |
winget install pandoc |
| Mermaid not rendering |
mmdc not installed |
npm install -g @mermaid-js/mermaid-cli or use fallback |
| Images missing |
Relative paths broken |
Use --embed-images (default) |
| Output too wide on print |
Style preset issue |
Use academic style for print |
| Special characters garbled |
Encoding issue |
Ensure source is UTF-8 |
Requirements
- Node.js 24+
- pandoc (
winget install pandoc)
- mermaid-cli (optional, only for
--mermaid-png)
Muscle Script
.github/muscles/md-to-html.cjs (v1.0.0)
Conversion Acceptance Decision Table
| Condition |
Verdict |
Action |
| All headings, lists, tables, code blocks render correctly |
Accept |
Ship as-is |
| Mermaid diagrams rendered as PNG/SVG with correct layout |
Accept |
Verify diagram labels readable |
| Mermaid diagrams missing or show raw syntax |
Reject |
Check mermaid-cli installed; re-run with --mermaid-png |
| Math equations (KaTeX/MathJax) render correctly |
Accept |
Spot-check complex equations |
| Math equations show raw LaTeX source |
Reject |
Verify KaTeX CSS/JS included in template |
| Embedded images display at correct size |
Accept |
Confirm no broken <img> tags |
| Images missing or show broken placeholders |
Reject |
Check paths are relative and files exist |
| CSS custom properties resolve (colors, fonts) |
Accept |
Visual spot-check against brand |
| Inline styles lost or overridden by browser defaults |
Warning |
Add !important or inline fallbacks |
| Output file size >5MB for a simple document |
Warning |
Check for unoptimized base64 images |
| HTML validates (no unclosed tags, no script injection) |
Accept |
Required for security |
HTML contains <script> from untrusted source |
Reject |
Sanitize; only allow known libraries |
Related Skills
- md-to-word — Sister converter for Word document output
- md-to-eml — Sister converter for email distribution
- md-scaffold — Generate converter-ready Markdown templates
- markdown-mermaid — Diagram authoring for embedded Mermaid
- lint-clean-markdown — Pre-validate markdown before conversion
- nav-inject — Add navigation tables for multi-file suites
Skill version: 2.0.0 | Last updated: 2026-04-14 | Category: document-conversion
1---2name: md-to-html3description: Convert Markdown to standalone HTML pages with embedded CSS, images, and Mermaid diagrams4---56# Markdown to HTML Conversion789> Write in Markdown, share as a polished web page — zero dependencies for viewers1011> **Staleness Watch**: Recheck external API and tool URLs before release or after upstream changes.1213Convert Markdown documents into self-contained HTML files with embedded CSS, base64 images, and Mermaid diagram rendering. Ready for quick-share distribution, offline viewing, print, or email attachment.1415---1617## When to Use1819- Sharing formatted documents without requiring Word or PDF viewers20- Creating self-contained HTML pages for offline distribution21- Generating printable web pages from Markdown sources22- Quick previews of documentation with professional styling23- Email attachments that open in any browser24- Static site generation from Markdown sources2526---2728## Supported Formatting2930| Format | Status | Notes |31|--------|--------|-------|32| **Headings** | ✅ | H1-H6 with styled colors |33| **Bold/Italic** | ✅ | Standard emphasis |34| **Links** | ✅ | Styled with underline on hover |35| **Images** | ✅ | Base64 embedded or linked |36| **Code blocks** | ✅ | Syntax highlighting, monospace font |37| **Inline code** | ✅ | Background highlight |38| **Tables** | ✅ | Striped rows, header styling |39| **Blockquotes** | ✅ | Left border, italic style |40| **Lists** | ✅ | Ordered, unordered, nested |41| **Task lists** | ✅ | Checkbox rendering |42| **Mermaid diagrams** | ✅ | PNG or table fallback |43| **SVG** | ✅ | Inline or base64 embedded |44| **Horizontal rules** | ✅ | Styled dividers |45| **Footnotes** | ✅ | Via pandoc |46| **Math (KaTeX)** | ⚠️ | Requires --katex flag |4748---4950## Key Features5152| Feature | Details |53|---------|---------|54| Style presets | professional, academic, minimal, dark |55| Self-contained | All CSS embedded in `<style>` block, no external deps |56| Image embedding | Local images converted to base64 data URIs |57| Mermaid support | PNG rendering or table fallback for diagrams |58| Print-ready | CSS `@media print` rules included |59| TOC generation | Optional table of contents via `--toc` |60| Frontmatter | Extracted for title, stripped from output |6162## Usage6364```bash65# Basic conversion (professional style)66node .github/muscles/md-to-html.cjs report.md6768# Academic style with TOC69node .github/muscles/md-to-html.cjs thesis.md --style academic --toc7071# Dark mode output72node .github/muscles/md-to-html.cjs docs.md --style dark7374# Mermaid diagrams rendered as PNG (high quality)75node .github/muscles/md-to-html.cjs architecture.md --mermaid-png7677# Custom output path78node .github/muscles/md-to-html.cjs README.md output/readme.html7980# Dry run (validate without generating)81node .github/muscles/md-to-html.cjs report.md --dry-run8283# Debug mode (save preprocessed markdown)84node .github/muscles/md-to-html.cjs report.md --debug85```8687---8889## Options Reference9091| Option | Default | Description |92|--------|---------|-------------|93| `--style PRESET` | professional | Style preset: professional, academic, minimal, dark |94| `--toc` | off | Generate table of contents from headings |95| `--embed-images` | true | Convert local images to base64 data URIs |96| `--no-embed-images` | - | Keep image paths as-is (external references) |97| `--strip-frontmatter` | true | Remove YAML frontmatter from output |98| `--mermaid-png` | off | Render Mermaid as PNG (requires mmdc) |99| `--mermaid-fallback` | default | Convert Mermaid to table representation |100| `--debug` | off | Save preprocessed markdown as _debug_combined.md |101| `--dry-run` | off | Validate only, no HTML output |102103---104105## Style Presets106107| Preset | Font | Max Width | Colors | Best For |108|--------|------|-----------|--------|----------|109| **professional** | Segoe UI | 900px | Blue headings, white bg | Business docs, reports |110| **academic** | Palatino Linotype | 750px | Dark headings, cream bg | Papers, theses |111| **minimal** | Inter | 800px | Black/gray, white bg | Clean, modern pages |112| **dark** | Segoe UI | 900px | Light text, dark bg | Dark mode preference |113114---115116## Mermaid Diagram Support117118| Diagram Type | PNG Mode | Fallback Mode |119|--------------|----------|---------------|120| Flowchart | ✅ Full render | ✅ Table |121| Sequence | ✅ Full render | ✅ Table |122| Class | ✅ Full render | ✅ Table |123| State | ✅ Full render | ✅ Table |124| ER | ✅ Full render | ✅ Table |125| Gantt | ✅ Full render | ⚠️ Limited |126| Pie | ✅ Full render | ✅ Table |127| Journey | ✅ Full render | ⚠️ Limited |128129**PNG Mode** (`--mermaid-png`): Requires mermaid-cli (mmdc). Renders at scale 8, 2400px width for crisp output. Diagrams are embedded as base64 PNGs.130131**Fallback Mode** (default): No external dependencies. Converts diagram syntax to an ASCII table representation suitable for text-only viewing.132133---134135## Print Styling136137HTML output includes `@media print` CSS rules:138139- Page breaks before H1 headings140- No background colors (ink-friendly)141- Link URLs shown after text142- Code blocks with borders instead of background143- Proper margins for binding144145---146147## Batch Processing148149```bash150# Convert all markdown files in a directory151for file in docs/*.md; do152 node .github/muscles/md-to-html.cjs "$file" --style professional153done154155# PowerShell equivalent156Get-ChildItem docs/*.md | ForEach-Object {157 node .github/muscles/md-to-html.cjs $_.FullName --style professional158}159```160161---162163## Troubleshooting164165| Problem | Cause | Solution |166|---------|-------|----------|167| "pandoc not found" | pandoc not installed | `winget install pandoc` |168| Mermaid not rendering | mmdc not installed | `npm install -g @mermaid-js/mermaid-cli` or use fallback |169| Images missing | Relative paths broken | Use `--embed-images` (default) |170| Output too wide on print | Style preset issue | Use academic style for print |171| Special characters garbled | Encoding issue | Ensure source is UTF-8 |172173---174175## Requirements176177- Node.js 24+178- pandoc (`winget install pandoc`)179- mermaid-cli (optional, only for `--mermaid-png`)180181---182183## Muscle Script184185`.github/muscles/md-to-html.cjs` (v1.0.0)186187---188189## Conversion Acceptance Decision Table190191| Condition | Verdict | Action |192|-----------|---------|--------|193| All headings, lists, tables, code blocks render correctly | Accept | Ship as-is |194| Mermaid diagrams rendered as PNG/SVG with correct layout | Accept | Verify diagram labels readable |195| Mermaid diagrams missing or show raw syntax | Reject | Check mermaid-cli installed; re-run with `--mermaid-png` |196| Math equations (KaTeX/MathJax) render correctly | Accept | Spot-check complex equations |197| Math equations show raw LaTeX source | Reject | Verify KaTeX CSS/JS included in template |198| Embedded images display at correct size | Accept | Confirm no broken `<img>` tags |199| Images missing or show broken placeholders | Reject | Check paths are relative and files exist |200| CSS custom properties resolve (colors, fonts) | Accept | Visual spot-check against brand |201| Inline styles lost or overridden by browser defaults | Warning | Add `!important` or inline fallbacks |202| Output file size >5MB for a simple document | Warning | Check for unoptimized base64 images |203| HTML validates (no unclosed tags, no script injection) | Accept | Required for security |204| HTML contains `<script>` from untrusted source | Reject | Sanitize; only allow known libraries |205206---207208## Related Skills209210- **md-to-word** — Sister converter for Word document output211- **md-to-eml** — Sister converter for email distribution212- **md-scaffold** — Generate converter-ready Markdown templates213- **markdown-mermaid** — Diagram authoring for embedded Mermaid214- **lint-clean-markdown** — Pre-validate markdown before conversion215- **nav-inject** — Add navigation tables for multi-file suites216217---218219*Skill version: 2.0.0 | Last updated: 2026-04-14 | Category: document-conversion*