Skip to main content
The Deno 2 Release Candidate is here
Learn more

markdown-wasm for Deno

🦕 Deno module for Markdown parser implemented in WebAssembly based on md4c from https://github.com/rsms/markdown-wasm

How to use?

import {parseMarkdown} from "https://deno.land/x/markdown_wasm/mod.ts"

console.log(parseMarkdown("# hello\n*世界*"))

References