Loading...
Loading...
MDV — Markdown superset for documents, dashboards, and slides with embedded charts, KPI stats, and data visualizations exported to HTML or PDF.
npx skill4agent add aradotso/trending-skills mdv-markdown-visualizationSkill by ara.so — Daily 2026 Skills collection.
.mdv:::git clone https://github.com/drasimwagan/mdv mdv
cd mdv
npm install
npm run build
# Render a file to HTML
node packages/mdv-cli/dist/index.js render examples/09-full-report.mdv
# Live preview with auto-reload
node packages/mdv-cli/dist/index.js preview examples/09-full-report.mdv
# Export to PDF
node packages/mdv-cli/dist/index.js export --pdf examples/09-full-report.mdv# Render .mdv → self-contained HTML
node packages/mdv-cli/dist/index.js render <file.mdv>
node packages/mdv-cli/dist/index.js render <file.mdv> --out output.html
# Live preview (opens browser, auto-reloads on save)
node packages/mdv-cli/dist/index.js preview <file.mdv>
# PDF export
node packages/mdv-cli/dist/index.js export --pdf <file.mdv>
node packages/mdv-cli/dist/index.js export --pdf <file.mdv> --out report.pdf.mdv project/
├── data/
│ ├── sales.csv
│ └── metrics.json
├── report.mdv
└── dashboard.mdv.mdv---
title: Q1 Sales Report
author: Jane Smith
theme: report # report | dashboard | slides | minimal
data:
sales: ./data/sales.csv
users: ./data/users.json
styles:
highlight:
background: "#fff3cd"
border-left: "4px solid #ffc107"
danger:
background: "#fde8e8"
border-left: "4px solid #e53e3e"
---| Theme | Best for |
|---|---|
| Long-form documents, articles |
| KPI cards, dense data layouts |
| Presentations, slide decks |
| Clean, unstyled output |
```stat
label, value, delta
Total revenue, $2.06M, +14%
New customers, 1,238, +8%
Churn rate, 2.1%, -0.3%
Active accounts, 9,842, +5%
The `stat` block renders a row of KPI cards. Columns: `label`, `value`, `delta` (optional).
### Charts
All charts use `` ```chart `` with attributes on the opening fence line:
```markdown
```chart type=bar x=region y=sales title="Sales by Region"
**Chart attributes:**
| Attribute | Values / Notes |
|-------------|-----------------------------------------------------|
| `type` | `bar`, `line`, `area`, `pie`, `donut`, `scatter` |
| `data` | Named dataset from front-matter (e.g. `data=sales`)|
| `x` | Column name for x-axis |
| `y` | Column name for y-axis |
| `series` | Column name to split into multiple series |
| `title` | Chart title string |
| `yFormat` | `currency`, `percent`, `number` |
| `color` | Hex or CSS color for single-series charts |
| `width` | `full`, `half`, `third` (layout hint) |
| `height` | Pixel height as number |
**Chart examples:**
```markdown
# Bar chart from referenced dataset
```chart type=bar data=sales x=region y=revenue title="Revenue by Region"undefinedundefinedundefined
### Inline Data in Chart Blocks
When no `data=` attribute is given, put CSV inline in the block body:
```markdown
```chart type=bar x=quarter y=revenue title="Quarterly Revenue"
quarter, revenue
Q1, 206000
Q2, 241000
Q3, 198000
Q4, 312000
### Tables
Standard CommonMark tables work as-is. For data-sourced tables:
```markdown
```table data=sales columns="region,revenue,growth" title="Regional Breakdown"
## `:::` Containers
Containers wrap content in styled or structural regions.
### Table of Contents
```markdown
::: toc
:::::: callout
This is an important note rendered in a highlighted box.
:::
::: callout type=warning
Watch out — this may have side effects.
:::
::: callout type=danger
Do not run this in production.
:::infowarningdangersuccess::: columns
::: col
Left column content, charts, or stats here.
:::
::: col
Right column content.
:::
:::::: highlight
This paragraph uses the `highlight` named style from front-matter.
:::
::: danger
Critical warning styled with the `danger` named style.
:::---
title: Q1 2026 Report
theme: report
data:
sales: ./data/sales.csv
---
::: toc
:::
# Executive Summary
::: callout type=success
Revenue grew 14% YoY, exceeding the $2M target.
:::
```stat
label, value, delta
Total Revenue, $2.06M, +14%
New Customers, 1,238, +8%
NPS Score, 67, +4undefinedundefinedundefinedundefined
### Dashboard Document
```markdown
---
title: Operations Dashboard
theme: dashboard
data:
ops: ./data/ops.csv
alerts: ./data/alerts.json
---
# Live Metrics
```stat
label, value, delta
Uptime, 99.97%, +0.02%
Avg Latency, 42ms, -8ms
Error Rate, 0.03%, -0.01%
Active Users, 14,203, +312undefinedundefinedundefined
### Slide Deck
```markdown
---
title: Product Roadmap 2026
theme: slides
---
# Vision
Our goal: ship faster, break less.
---
# Q1 Achievements
```stat
label, value, delta
Features shipped, 24, +6
Bugs closed, 187, -12%
Deploy frequency, 3.2/day, +40%quarter, arr
Q1, 1200000
Q2, 1450000
Q3, 1780000
Q4, 2060000
## Data Formats
### CSV (inline or file)
```csv
region, revenue, growth, deals
North, 680000, 0.18, 142
South, 410000, 0.09, 87
East, 520000, 0.22, 113
West, 450000, 0.11, 98[
{ "month": "Jan", "revenue": 180000, "region": "North" },
{ "month": "Feb", "revenue": 195000, "region": "North" },
{ "month": "Jan", "revenue": 120000, "region": "South" }
]data:
sales: ./data/sales.csv
metrics: ./data/metrics.jsoncd packages/mdv-vscode
npm install
npm run build
# Then install the generated .vsix via VS Code Extensions panel → "Install from VSIX".mdvCtrl+Shift+Pdocs/vscode.mddocs/publishing-vscode-extension.mdpackages/
├── mdv-core/ # Parser, renderer, chart engine (TypeScript)
├── mdv-cli/ # CLI: render, preview, export commands
└── mdv-vscode/ # VS Code extension with live preview---
title: Sales Dashboard
theme: dashboard
data:
pipeline: ./data/pipeline.csv
---
```stat
label, value, delta
Pipeline, $4.2M, +22%
Deals Open, 94, +11
Win Rate, 31%, +3%
Avg Deal Size, $44.7K, +8%undefinedundefinedundefined
### Pattern: Callout + Inline Data Chart
```markdown
::: callout type=warning
Revenue dipped in March due to seasonal effects.
:::
```chart type=area x=month y=revenue title="Revenue Trend"
month, revenue
Jan, 180000
Feb, 195000
Mar, 162000
Apr, 201000
May, 224000
### Pattern: Named Styles for Emphasis
```yaml
---
styles:
metric-good:
background: "#f0fff4"
border-left: "4px solid #38a169"
metric-bad:
background: "#fff5f5"
border-left: "4px solid #e53e3e"
---::: metric-good
**Churn** dropped to 1.8% this quarter — lowest in 3 years.
:::
::: metric-bad
**Support tickets** up 23% — investigate root cause.
:::npm installnpm run builddata=.mdvnpm installpackages/mdv-clipreview.mdv.mdvnpm run buildpackages/mdv-vscode.vsix.mdv.mdvreportdashboardslidesminimalpackages/mdv-core/src/
├── parser.ts # CommonMark + MDV extensions parser
├── renderer.ts # HTML renderer
├── chart.ts # SVG chart engine
├── data.ts # CSV/JSON data loader
└── theme.ts # Theme & named style resolution
packages/mdv-cli/src/
└── index.ts # CLI entry: render | preview | export
packages/mdv-vscode/src/
└── extension.ts # VS Code extension + preview panel