Fast and Small markdown parser and renderer based on mity/md4c.
- Fast — ~8x faster than markdown-it
- CLI — Render local files, remote URLs, GitHub repos, npm packages
- Small — ~135KB gzip WASM binary works in Node.js and Browser
- Multi-format output — HTML, JSON AST, ANSI terminal, plain text, markdown, metadata
- Streaming heal — Fix incomplete markdown from LLM output in real-time
- Full CommonMark — Passes the CommonMark spec
- GitHub Flavored Markdown — Tables, task lists, strikethrough, autolinks, alerts
- Built-in YAML parser — Frontmatter and standalone YAML, no external dependency
- Extra extensions — LaTeX math, highlight (
==mark==), footnotes, inline attributes - Comark (MDC) support — Block and inline components with props, slots
- Universal JS — Native Node.js addon (NAPI) + portable WASM for browsers, Deno, Bun, edge workers
- Zig library — SAX-like streaming parser, zero-copy, no AST allocation overhead
- pi0/mdshot — Render beautiful screenshots from Markdown.
- pi0/mdzilla — Markdown browser for humans and agents.
# Local files
npx md4x README.md # ANSI output
npx md4x README.md -t html # HTML output
npx md4x README.md -t text # Plain text output (strip markdown)
npx md4x README.md -t ast # JSON AST output (comark)
npx md4x README.md -t meta # Metadata JSON output
npx md4x README.md -t markdown # Clean markdown (strip MDC/frontmatter/HTML)
npx md4x README.md -t heal # Heal incomplete markdown
npx md4x README.md --heal # Heal before rendering (any format)
npx md4x README.md --heal -t ast # Heal + JSON AST output
# Remote sources
npx md4x https://nitro.build/guide # Fetch and render any URL
npx md4x gh:nitrojs/nitro # GitHub repo → README.md
npx md4x npm:vue@3 # npm package at specific version
# Stdin
echo "# Hello" | npx md4x -t text
cat README.md | npx md4x -t html
# Output to file
npx md4x README.md -t meta -o README.json
# Full HTML document
npx md4x README.md -t html -f --html-title="My Docs" # Wrap in full HTML with <head>
npx md4x README.md -t html -f --html-css=style.css # Add CSS linkyay -S md4x # md4x-gitThe examples above are the npm CLI (npx md4x). The native binary — the one zig build
produces and md4x(1) documents — is a smaller tool: it reads a local file or stdin, with
no URL, gh: or npm: shorthands, and its formats are html (the default), text,
json, ansi, markdown and heal, where the npm CLI spells the AST format ast and
adds meta.
Available as a native Node.js addon (NAPI) for maximum performance, or as a portable WASM module that works in any JavaScript runtime (Node.js, Deno, Bun, browsers, edge workers, etc.).
The bare md4x import auto-selects NAPI on Node.js and WASM elsewhere.
import {
init,
renderToHtml,
renderToAST,
parseAST,
renderToAnsi,
renderToText,
renderToMarkdown,
renderToMeta,
parseMeta,
parseYAML,
heal,
} from "md4x";
// await init(); // required for WASM, optional for NAPI
const html = renderToHtml("# Hello, **world**!");
const json = renderToAST("# Hello, **world**!"); // raw JSON string
const ast = parseAST("# Hello, **world**!"); // parsed ComarkTree object
const ansi = renderToAnsi("# Hello, **world**!");
const text = renderToText("# Hello, **world**!"); // plain text (stripped)
const md = renderToMarkdown("# Hello, **world**!"); // clean standard markdown
const metaJson = renderToMeta("# Hello, **world**!"); // raw JSON string
const meta = parseMeta("# Hello, **world**!"); // parsed meta
const yaml = parseYAML("title: Hello"); // standalone YAML -> JS value
const healed = heal("**incomplete streaming mark"); // "**incomplete streaming mark**"Both NAPI and WASM export a unified API with init(). For WASM, init() must be called before rendering. For NAPI, it is optional (the native binding loads lazily on first render call).
Synchronous, zero-overhead native addon. Best performance for server-side use.
import { renderToHtml } from "md4x/napi";Works anywhere with WebAssembly support. Requires a one-time async initialization.
import { init, renderToHtml } from "md4x/wasm";
await init(); // call once before rendering
const html = renderToHtml("# Hello");init() accepts an optional options object with a wasm property (ArrayBuffer, Response, WebAssembly.Module, or Promise<Response>). When called with no arguments, it loads the bundled .wasm file automatically.
A single, minified, dependency-free ES module (~140 KB) with the same API as md4x/wasm, the WASM binary embedded into the same chunk.
import { init, renderToHtml } from "md4x/standalone";
await init(); // inflates and instantiates the inlined binary
const html = renderToHtml("# Hello");This is also what md4x and md4x/wasm resolve to under the browser export condition, so browser bundlers get the self-contained module automatically (the explicit unwasm condition still wins where it is set).
Benchmarks
(source: packages/md4x/bench)
bun packages/md4x/bench/index.mjs
cpu: Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz
runtime: bun 1.3.14 (x64-linux)
benchmark avg (min … max) p75 / p99 (min … top 1%)
md4x.napi (renderToHtml) 6.78 µs/iter 6.82 µs 6.88 µs ▃▃██▆▆▆▆█▃▃
md4x.wasm (renderToHtml) 15.15 µs/iter 15.70 µs 31.72 µs █▄▃▂▂▁▁▁▁▁▁
md4w (renderToHtml) 17.56 µs/iter 18.23 µs 38.41 µs ▆█▆▂▂▁▁▁▁▁▁
markdown-it (renderToHtml) 59.77 µs/iter 69.44 µs 143.41 µs ██▂▃▃▂▁▁▁▁▁
markdown-exit (renderToHtml) 56.02 µs/iter 54.56 µs 125.47 µs ▃█▂▁▁▁▁▁▁▁▁
satteri (renderToHtml) 26.31 µs/iter 27.21 µs 47.39 µs ▄█▅▃▂▁▁▁▁▁▁
ox-content (renderToHtml) 11.11 µs/iter 11.30 µs 11.56 µs ▃█▆▆▁▁▁▃▁▃▃
qip.wasm (renderToHtml) 21.57 µs/iter 21.71 µs 37.39 µs █▆▃▂▁▁▁▁▁▁▁
summary
md4x.napi (renderToHtml)
1.64x faster than ox-content (renderToHtml)
2.23x faster than md4x.wasm (renderToHtml)
2.59x faster than md4w (renderToHtml)
3.18x faster than qip.wasm (renderToHtml)
3.88x faster than satteri (renderToHtml)
8.26x faster than markdown-exit (renderToHtml)
8.81x faster than markdown-it (renderToHtml)
md4x.napi (parseAST) (medium) 23.24 µs/iter 25.51 µs 27.39 µs █▆▁▃▆▁▁▁▃▁▆
md4x.wasm (parseAST) (medium) 31.88 µs/iter 33.05 µs 62.20 µs ▆█▆▃▂▁▁▁▁▁▁
md4w (parseAST) (medium) 24.94 µs/iter 26.10 µs 26.99 µs ▃▃█▃▃▃▁▁▆▁▃
markdown-it (parseAST) (medium) 41.26 µs/iter 43.17 µs 72.22 µs ▃█▅▂▂▂▂▁▁▁▁
markdown-exit (parseAST) (medium) 35.42 µs/iter 36.24 µs 36.58 µs ▅▅▁█▅█▁▁▅█▅
satteri (parseAST) (medium) 22.31 µs/iter 22.85 µs 39.60 µs ▂█▃▂▂▁▁▁▁▁▁
ox-content (parseAST) (medium) 24.21 µs/iter 26.36 µs 26.69 µs ██▁▅▁▅▅▁▅█▅
summary
satteri (parseAST) (medium)
1.04x faster than md4x.napi (parseAST) (medium)
1.09x faster than ox-content (parseAST) (medium)
1.12x faster than md4w (parseAST) (medium)
1.43x faster than md4x.wasm (parseAST) (medium)
1.59x faster than markdown-exit (parseAST) (medium)
1.85x faster than markdown-it (parseAST) (medium)
Notes:
- The
parseASTgroup at the top (satteri, md4x.napi, ox-content, md4w) sits within ~12% of each other, which is inside run-to-run noise on this machine — repeat runs reorder them. Treat them as tied; the clear gaps are further down the list. - The parsers do not all return the same thing: markdown-it yields a flat array of tokens where md4x returns a nested comark AST, satteri's mdast carries full
positiondata on every node, and ox-content hands back the tree as a JSON string (the benchJSON.parses it so every entry ends at a materialized tree). - ox-content ships with GFM off, so the bench passes
{ gfm: true }to put it on the same fixture as the rest. - qip is the
gfm-commonmark.0.31.2WASM component, not an npm package — the bench fetches it once intobench/.cache/(gitignored) and skips the entry if the download fails. It renders through fixed 2 MiB in/out buffers with no imports, and exposes HTML only, so it does not appear in theparseASTgroup.
renderToHtml and renderToAnsi support a highlighter option for custom syntax highlighting of fenced code blocks. It receives the raw code (HTML-unescaped) and the block's metadata (language, filename, highlighted lines), and returns a replacement string or undefined to keep the default rendering.
import { renderToHtml } from "md4x";
import { codeToHtml } from "rangi";
import { githubDark } from "rangi/themes";
const html = renderToHtml("```js\nconst x = 1;\n```", {
highlighter: (code, block) => {
if (!block.lang) return; // keep default for fences with no language
return codeToHtml(code, { lang: block.lang, theme: githubDark });
},
});Any synchronous highlighter works. These examples use rangi (a separate install: npm i rangi) because it needs no async setup and inlines its theme colors, so the markup is self-contained.
Code block metadata from the info string is parsed automatically:
```ts [app.ts] {1,3-5}
// block.lang = "ts"
// block.filename = "app.ts"
// block.highlights = [1, 3, 4, 5]
```renderToAnsi renders a document straight to ANSI escape sequences — headings, emphasis, tables, lists, blockquotes, alerts and OSC 8 clickable links — ready to console.log in a CLI or TUI.
import { renderToAnsi } from "md4x";
import { codeToAnsi } from "rangi";
console.log(
renderToAnsi(doc, {
highlighter: (code, block) =>
block.lang ? codeToAnsi(code, { lang: block.lang }) : undefined,
}),
);The highlighter is the same hook as for HTML, returning terminal escapes instead of markup. Code arrives with the block's indentation stripped, and md4x re-applies it to every line that comes back — so a block nested in a blockquote or list keeps its bars and indent without the highlighter knowing anything about the surrounding document. Control bytes in the source are neutralized before the code is handed over, so a fenced block cannot smuggle escape sequences into the terminal.
Options: showUrls prints link targets after the text (for terminals without OSC 8 support), showFrontmatter renders frontmatter as dim text instead of hiding it, and heal: true closes unterminated markup — the combination that makes streaming LLM output render cleanly frame by frame.
renderToAnsi(chunk, { heal: true, showUrls: true });The CLI is this renderer with a file argument: npx md4x README.md previews any document in the terminal, since it defaults to ansi when stdout is a TTY (and text when piped — pass --format=ansi to force escapes into a pipe).
heal() fixes incomplete markdown from streaming LLM output — closing unclosed bold, italic, strikethrough, inline code, code blocks, links, and more. Useful for rendering partial markdown in real-time as tokens arrive (inspired by streamdown/remend).
import { heal } from "md4x";
heal("**bold"); // "**bold**"
heal("*ita"); // "*ita*"
heal("~~strike"); // "~~strike~~"
heal("`code"); // "`code`"
heal("```js\ncode"); // "```js\ncode\n```"
heal("[text](http:"); // "" (strips broken links)All render functions also accept a { heal: true } option to heal input before rendering in a single pass:
import { renderToHtml, parseAST, renderToAnsi, renderToText } from "md4x";
// Heal + render in one call — ideal for streaming LLM output
renderToHtml("# Hello **world", { heal: true });
// "<h1>Hello <strong>world</strong></h1>\n"
parseAST("# Hello **world", { heal: true });
// { nodes: [["h1", {}, "Hello ", ["strong", {}, "world"]]], ... }
renderToAnsi("# Hello **world", { heal: true });
renderToText("# Hello **world", { heal: true });
// Combines with other options
renderToHtml("# Hello **world", { heal: true, full: true });Benchmarks
bun packages/md4x/bench/heal.mjs
cpu: Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz
runtime: bun 1.3.14 (x64-linux)
benchmark avg (min … max) p75 / p99 (min … top 1%)
md4x-napi heal (small) 1.28 µs/iter 1.32 µs 1.81 µs ▃█▂▂▁▂▁▁▁▂▁
md4x-wasm heal (small) 3.34 µs/iter 3.08 µs 9.29 µs █▃▁▂▁▁▁▁▁▁▁
remend heal (small) 9.09 µs/iter 9.77 µs 22.17 µs ██▅▃▂▂▁▁▁▁▁
summary
md4x-napi heal (small)
2.61x faster than md4x-wasm heal (small)
7.12x faster than remend heal (small)
md4x-napi heal (medium) 3.21 µs/iter 3.24 µs 3.39 µs ▄█▆▄▃▂▂▂▄▂▂
md4x-wasm heal (medium) 4.40 µs/iter 4.45 µs 4.93 µs █▅█▅▅▃▁▂▁▁▂
remend heal (medium) 53.67 µs/iter 57.84 µs 78.92 µs █▅▂▃▃▂▁▁▁▁▁
summary
md4x-napi heal (medium)
1.37x faster than md4x-wasm heal (medium)
16.71x faster than remend heal (medium)
md4x-napi heal (large) 147.94 µs/iter 148.21 µs 229.58 µs ▅█▃▁▁▁▁▁▁▁▁
md4x-wasm heal (large) 175.43 µs/iter 177.00 µs 292.66 µs ▄█▂▁▁▁▁▁▁▁▁
remend heal (large) 18.63 ms/iter 18.79 ms 19.46 ms ▅▂▅█▂▄▂▂▁▁▂
summary
md4x-napi heal (large)
1.19x faster than md4x-wasm heal (large)
125.91x faster than remend heal (large)
MD4X ships its own YAML parser — a Zig port of libyaml, with no C dependency in the shipped artifacts. It backs frontmatter parsing, and is exposed directly for standalone YAML documents. Any root node is accepted (mapping, sequence, or bare scalar); an empty document yields null.
import { parseYAML, yamlToJson } from "md4x";
parseYAML("title: Hello\ncount: 42\ndraft: true");
// { title: "Hello", count: 42, draft: true }
yamlToJson("title: Hello"); // '{"title":"Hello"}' (raw JSON string)yamlToJson is parseYAML without the JSON.parse — use it when the value is headed straight back out as JSON.
Benchmarks
bun packages/md4x/bench/yaml.mjs
cpu: Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz
runtime: bun 1.3.14 (x64-linux)
benchmark avg (min … max) p75 / p99 (min … top 1%)
md4x.napi (parseYAML) (medium) 22.34 µs/iter 22.32 µs 22.35 µs ▆▁▆▁▁▁▃▆▃▁█
md4x.wasm (parseYAML) (medium) 41.11 µs/iter 49.34 µs 80.21 µs ▄█▃▂▂▂▂▂▁▁▁
js-yaml (parseYAML) (medium) 50.69 µs/iter 53.59 µs 98.25 µs ▅█▅▃▂▂▂▂▁▁▁
yaml (parseYAML) (medium) 377.44 µs/iter 392.99 µs 728.75 µs ▃█▃▂▁▁▂▂▂▁▁
confbox (parseYAML) (medium) 40.27 µs/iter 43.47 µs 44.08 µs ▅▅█▅▅▅▅▁▁▅█
summary
md4x.napi (parseYAML) (medium)
1.8x faster than confbox (parseYAML) (medium)
1.84x faster than md4x.wasm (parseYAML) (medium)
2.27x faster than js-yaml (parseYAML) (medium)
16.89x faster than yaml (parseYAML) (medium)
md4x.napi (yamlToJson) (medium) 17.78 µs/iter 17.83 µs 19.29 µs ▂▂▂▂█▂▁▁▁▁▂
md4x.wasm (yamlToJson) (medium) 28.63 µs/iter 29.35 µs 29.61 µs ▃▁▁▁▆▁▁█▆▆▃
js-yaml (yamlToJson) (medium) 44.24 µs/iter 43.28 µs 47.30 µs ▂▂█▂▁▁▁▁▁▁▂
yaml (yamlToJson) (medium) 321.22 µs/iter 310.31 µs 644.56 µs ▅█▂▁▁▁▁▁▁▁▁
summary
md4x.napi (yamlToJson) (medium)
1.61x faster than md4x.wasm (yamlToJson) (medium)
2.49x faster than js-yaml (yamlToJson) (medium)
18.07x faster than yaml (yamlToJson) (medium)
Notes:
- The bench asserts every parser returns the same value as js-yaml on each fixture before timing anything, so the numbers are for identical work.
- The
parseYAMLgroup ends at a materialized JS value for every entry. TheyamlToJsongroup compares md4x's native JSON-string output against the JS libs' parse-then-JSON.stringify; confbox has no string-output path, so it only appears in the first group. confboxbundles js-yaml 4, which is why it tracks js-yaml closely.yamlbuilds a full CST andDocumenton every parse, which accounts for its much larger gap.
MD4X is written in Zig. src/lib.zig is the library root: it pulls the parser, the entity
table and every renderer into a single module and re-exports their entry points, so they
call each other directly.
| Entry point | Output |
|---|---|
md_html / md_html_ex |
HTML (_ex adds full-document output and the syntax-highlight hook) |
md_ast |
Comark AST as JSON |
md_ansi / md_ansi_ex |
ANSI terminal output (_ex adds the syntax-highlight hook) |
md_text |
Plain text (markdown stripped) |
md_meta |
Frontmatter + headings as JSON |
md_markdown |
Clean, normalized markdown |
md_heal |
Healed markdown (a text transform — it does not parse) |
md_yaml |
Standalone YAML document as JSON |
md_parse |
The SAX parser itself, for custom rendering |
Every renderer takes the same shape — input bytes, an output callback, userdata, and a
word of renderer flags — and streams its result through the callback without building an
AST:
const md4x = @import("md4x"); // src/lib.zig
fn sink(text: [*c]const u8, size: c_uint, userdata: ?*anyopaque) void {
const out: *std.ArrayListUnmanaged(u8) = @ptrCast(@alignCast(userdata.?));
out.appendSlice(gpa, text[0..size]) catch {};
}
var out: std.ArrayListUnmanaged(u8) = .empty;
_ = md4x.md_html(input.ptr, @intCast(input.len), sink, &out, 0);md_parse is the five-callback SAX interface the renderers themselves are written
against (enter_block / leave_block / enter_span / leave_span / text), for when
none of the bundled renderers fit. The markdown dialect is fixed: no entry point takes
parser flags, and there is nothing to select. See docs/parser-api.md
for the callback table and docs/renderers.md for each renderer's
flags and behavior.
Requires Zig. No other external dependencies (libyaml is fetched
by build.zig.zon).
zig build # CLI at zig-out/bin/md4x (ReleaseFast, the default)
zig build -Doptimize=Debug # Debug build
zig build wasm # WASM → packages/md4x/build/md4x.wasm
zig build napi-all # NAPI addon for all 9 platforms
bun run build:js # wasm + host NAPI + standalone bundle (what the JS package loads)