u
Arda
Markdown
B
I
K
<>
H1
H2
H3
UL
OL
BQ
---
Img
```
Examples
Preview
.md
.html
Share
Copy
Loading…
# Hello World This is a **live** markdown preview powered by [Rumil](https://pub.dev/packages/rumil_parsers)'s CommonMark parser compiled to **WebAssembly**. ## Features - Full CommonMark 0.31.2 conformance (652/652) - Left-recursive parser combinators via [Rumil](https://pub.dev/packages/rumil) - Parses on every keystroke — no save button - Rendered to HTML by [Rem](https://pub.dev/packages/rem) > The entire parser + renderer is ~250KB of WASM. ```dart final node = markdown(input); final html = render(node); ``` ## Try it Edit this text and watch the preview update in real time. Use the formatting toolbar above, or keyboard shortcuts: - **Ctrl+B** — Bold - **Ctrl+I** — Italic - **Ctrl+K** — Link - **Ctrl+E** — Inline code --- | Feature | Status | |---------|--------| | Headings | ✓ | | Emphasis | ✓ | | Links | ✓ | | Code blocks | ✓ | | Lists | ✓ | | Blockquotes | ✓ | | Images | ✓ | | HTML | ✓ | *Built with parsers that are values, not functions.*