mdz

**mdz** is a strict markdown dialect built for streaming, [Svelte](https://svelte.dev/) authoring, docs websites, and untrusted content. This text is rendering through `MdzStreamParser` right now, character by character. It supports markdown basics like **bold**, _italic_, ~~strikethrough~~, `inline code`, headings, and auto-detected links like https://www.fuz.dev. Svelte components too! - lists stream as their structure arrives - nesting included > blockquotes too,<br />line by<br />line And of course, [highlighted code](https://code.fuz.dev/) blocks: ```ts import {mdz_parse} from '@fuzdev/mdz/mdz.js'; const nodes = mdz_parse('**hello world**'); ``` For more see the /docs.
docs