Skip to main content
Module

x/diplodocus/deps.ts>Renderer

🦕 Deno Deploy Docs 📓
Latest
class Renderer
Re-export
import { Renderer } from "https://deno.land/x/diplodocus@0.0.4/deps.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