Repository
Current version released
3 years ago
Goldmark
A very fast Markdown compiler for Deno 🦕
Powered by Go’s Goldmark compiled to WASM.
Usage
Basic Example
import { transform } from "https://deno.land/x/goldmark/mod.ts";
const markdown = await Deno.readTextFile('./content.md');
const { frontmatter, content } = await transform(markdown)
console.log(frontmatter);
console.log(content);