Skip to main content
Module

x/markdown/mod.ts>Renderer

Deno Markdown module forked from https://github.com/ts-stack/markdown/tree/bb47aa8e625e89e6aa84f49a98536a3089dee831
Latest
class Renderer
Re-export
import { Renderer } from "https://deno.land/x/markdown@v2.0.0/mod.ts";

Constructors

new
Renderer(options?: MarkedOptions)

Properties

protected
options: MarkedOptions

Methods

blockquote(quote: string): string
br(): string
code(
code: string,
lang?: string,
escaped?: boolean,
): string
codespan(text: string): string
del(text: string): string
em(text: string): string
heading(
text: string,
level: number,
raw: string,
): string
hr(): string
html(html: string): string
image(
href: string,
title: string,
text: string,
): string
list(body: string, ordered?: boolean): string
listitem(text: string): string
paragraph(text: string): string
strong(text: string): string
table(header: string, body: string): string
tablecell(content: string, flags: { header?: boolean; align?: Align; }): string
tablerow(content: string): string
text(text: string): string