Render markdown tables as PNG images. Use whenever you need to send a table in chat — render it as an image instead of raw markdown text.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill md-table-image --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Md Table Image?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-md-table-image)More formats (shields.io, HTML) on the badges page.
---
name: md-table-image
description: Render markdown tables as PNG images. Use whenever you need to send a table in chat — render it as an image instead of raw markdown text.
metadata: {"clawdbot":{"emoji":"📊","requires":{"bins":["node"]}}}
---
# MD Table Image
Renders markdown (especially tables) into a styled PNG image.
## Usage
```bash
node {baseDir}/scripts/render.mjs "markdown content" -o /path/to/output.png
```
Or pipe markdown in:
```bash
echo "| A | B |\n|---|---|\n| 1 | 2 |" | node {baseDir}/scripts/render.mjs -o /path/to/output.png
```
## Options
- `-o <path>`: Output PNG path (default: `/tmp/table.png`)
- `--title <text>`: Optional title above the table
- `--width <px>`: Viewport width (default: 800)
- `--dark`: Dark theme
## When to Use
**Always** use this skill when sending tables to chat. Render the table as an image and send the image instead of raw markdown.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Create Mermaid diagrams for flowcharts, sequences, ERDs, and