Skip to main content
Module

x/rusty_markdown/mod.ts>Options

Deno bindings for pulldown-cmark, a CommonMark-compliant Markdown parser made in Rust, compiled to WebAssembly.
Latest
interface Options
import { type Options } from "https://deno.land/x/rusty_markdown@v0.4.1/mod.ts";

Option object containing flags for enabling extra features that are not part of the CommonMark spec.

Properties

optional
tables: boolean

Enables Github flavored tables.

optional
footnotes: boolean

Enables footnotes[^1].

[^1]: Like this.

optional
strikethrough: boolean

Enables strikethrough text, like this.

optional
tasklists: boolean

Enables Github flavored task lists.

optional
smartPunctuation: boolean

Enables smart punctuation (turns -- into –)