Skip to main content
Module

x/dendron_exports/deps/micromark.ts>ParseContext

Export your Dendron vault into SSG compatible markdown
Go to Latest
interface ParseContext
import { type ParseContext } from "https://deno.land/x/dendron_exports@v0.1.2/deps/micromark.ts";

A context object that helps w/ parsing markdown.

Properties

All constructs.

content: Create

Create a content tokenizer.

document: Create

Create a document tokenizer.

flow: Create

Create a flow tokenizer.

string: Create

Create a string tokenizer.

text: Create

Create a text tokenizer.

defined: Array<string>

List of defined identifiers.

lazy: Record<number, boolean>

Map of line numbers to whether they are lazy (as opposed to the line before them). Take for example:

> a
b

L1 here is not lazy, L2 is.