Bun v1.3.8 Bun version 1.3.8 introduces a built-in CommonMark-compliant Markdown parser written in Zig, offering three rendering APIs: `Bun.markdown.html()` for HTML output, `Bun.markdown.render()` for custom callbacks, and `Bun.markdown.react()` for React elements. The update also adds a `--metafile-md` CLI option for `bun build` that generates Markdown-based bundle analysis, designed to help developers identify bloat and understand dependency chains when shared with LLMs. To install Bun curl -fsSL https://bun.sh/install | bash npm install -g bun powershell -c "irm bun.sh/install.ps1|iex" scoop install bun brew tap oven-sh/bun brew install bun docker pull oven/bun docker run --rm --init --ulimit memlock=-1:-1 oven/bun To upgrade Bun bun upgrade Bun.markdown — Built-in Markdown Parser Bun now includes a fast, CommonMark-compliant Markdown parser written in Zig. This is a Zig port of the popular md4c library. The new Bun.markdown API provides three ways to render Markdown: Bun.markdown.html — Render to HTML const html = Bun.markdown.html " Hello world " ; // "