Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
namespace gfm.Marked.marked
import { gfm } from "https://deno.land/x/fathym_eac_runtime@v0.0.140/src/src.deps.ts";
const { marked } = gfm.Marked;
function gfm.Marked.marked
import { gfm } from "https://deno.land/x/fathym_eac_runtime@v0.0.140/src/src.deps.ts";
const { marked } = gfm.Marked;

Compiles markdown to HTML asynchronously.

Parameters

src: string

String of markdown source to be compiled

options: marked.MarkedOptions & { async: true; }

Hash of options, having async: true

Returns

Promise<string>

Promise of string of compiled HTML

Compiles markdown to HTML synchronously.

Parameters

src: string

String of markdown source to be compiled

optional
options: marked.MarkedOptions

Optional hash of options

Returns

string

String of compiled HTML

Compiles markdown to HTML asynchronously with a callback.

Parameters

src: string

String of markdown source to be compiled

callback: (error: any, parseResult: string) => void

Function called when the markdownString has been fully parsed when using async highlighting

Compiles markdown to HTML asynchronously with a callback.

Parameters

src: string

String of markdown source to be compiled

options: marked.MarkedOptions

Hash of options

callback: (error: any, parseResult: string) => void

Function called when the markdownString has been fully parsed when using async highlighting