Turn static docs into interactive experiences—instantly.
Transform any Markdown into clickable UI that works everywhere. Write once, render interactive widgets in any framework.
```markdown-ui-widget
select env [dev prod]
```
- AI-ready: LLMs generate interactive flows and gather feedback, all in Markdown
- Built for humans and bots: Works great typed by hand or produced with AI
- Readable everywhere: Preview rich UI, but if unsupported, it's still legible Markdown
- Zero lock-in: Pure spec—works with any Markdown parser + any UI framework
npm install @markdown-ui/react @markdown-ui/marked-ext
import { MarkdownUI } from '@markdown-ui/react';
import { Marked } from 'marked';
import { markedUiExtension } from '@markdown-ui/marked-ext';
const marked = new Marked().use(markedUiExtension);
const html = marked.parse('```markdown-ui-widget\nselect env [dev prod]\n```');
<MarkdownUI html={html} />
Prefer Svelte or Vue? Use @markdown-ui/svelte
or @markdown-ui/vue
instead. Same API, same magic.
Buttons & choices
button-group plan [Basic Pro Enterprise] Basic
Dropdowns & multi-select
select region ["US East" "US West"] "US East"
select-multi tools [Docker "Redis Cache" Postgres] [Docker]
Text & numbers
text-input name "Your name" "Enter name here"
slider cpu 1 32 1 4
Complex forms
form deploy "Launch"
select env ["Development" "Production"] "Development"
slider replicas 1 10 1 3
Interactive charts
chart-line
title: Monthly Sales
Month,Sales,Target
Jan,100,120
Feb,150,140
Mar,200,180
- Write widgets in Markdown using simple DSL syntax
- Parse with our extension (or bring your own parser)
- Render as interactive components in your framework
- Listen for events when users interact with widgets
Works with any Markdown parser + any UI framework. Zero lock-in.
📚 View Full Documentation & Spec →
Parsers ✅
@markdown-ui/mdui-lang
- Core DSL parser for converting widget syntax to JSON@markdown-ui/marked-ext
- Marked.js extension with integrated parser
Renderers ✅
@markdown-ui/svelte
- Svelte components with full chart support@markdown-ui/react
- React components with full chart support@markdown-ui/vue
- Vue components with full chart support
You can embed interactive UI widgets in Markdown using fenced code blocks with language "markdown-ui-widget".
## DSL Syntax Reference
**Widget Types:**
- text-input id "label" "placeholder" "default"
- button-group id ["Choice 1" "Choice 2" ...] "default"
- select id ["Option A" "Option B" ...] "default"
- select-multi id ["Item 1" "Item 2" ...] ["default1" "default2"]
- slider id min max step default
- form id "Submit Label" (multi-line with 2-space indented fields)
- chart-line, chart-bar, chart-pie, chart-scatter (multi-line with CSV data)
**Quoting Rules:**
- Use quotes for ANY text containing spaces: "User Name", "New York"
- Arrays support mixed quoting: [Simple "Complex Item" Another]
- Required quotes: labels, placeholders, array items with spaces
- Optional quotes: single words, numbers
**Examples:**
Text Input:
```markdown-ui-widget
text-input email "Email Address" "Enter your email" "user@example.com"
```
Button Groups:
```markdown-ui-widget
button-group plan ["Basic Plan" "Pro Plan" "Enterprise"] "Basic Plan"
```
Dropdowns:
```markdown-ui-widget
select region ["US East" "US West" "Europe"] "US East"
```
Multi-Select:
```markdown-ui-widget
select-multi tools [Docker "Redis Cache" "PostgreSQL DB"] [Docker]
```
Sliders:
```markdown-ui-widget
slider cpu 1 32 1 4
```
Forms:
```markdown-ui-widget
form deployment "Deploy Now"
text-input name "App Name"
select env ["Development" "Production"] "Development"
slider replicas 1 10 1 3
```
Charts:
```markdown-ui-widget
chart-line
title: Monthly Revenue
height: 300
Month,Sales,Target
Jan,45000,50000
Feb,52000,50000
Mar,48000,55000
```
**Output Rules:**
- One widget per code block
- Use quotes for any text with spaces
- Parameters after ID are positional and optional
- Form fields must be indented exactly 2 spaces
- Chart data follows CSV format with headers
- Only use the 10 widget types above (including 4 chart types)
- New widgets: Open issue with use case
- Parser/renderer ports: PRs welcome
- Spec changes: Discuss in issues first
- 🌐 Live Demo - Try all widgets interactively
- 📖 Technical Specification - Complete spec documentation
- 📦 npm Packages - All available packages
- 🐙 GitHub Repository - Source code & issues
MIT © 2025