๐ MD4X
August 15, 2026 ยท View on GitHub
Fast and Small markdown parser and renderer based on mity/md4c.
Features
- 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
Showcase
- pi0/mdshot โ Render beautiful screenshots from Markdown.
- pi0/mdzilla โ Markdown browser for humans and agents.
CLI
# 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 link
Install from AUR
yay -S md4x # md4x-git
The 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.
JavaScript
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).
NAPI (Node.js native)
Synchronous, zero-overhead native addon. Best performance for server-side use.
import { renderToHtml } from "md4x/napi";
WASM (universal)
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.
Standalone (inlined WASM)
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.
Code Highlighting
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]
```
Terminal Output (TUI)
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).
Markdown Healing
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)
YAML
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.
Zig Library
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.
Building
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)