Interface HtmlFormatOpts

interface HtmlFormatOpts {
    attrib: string;
    bg: string;
    bold: string;
    colors: string[];
    delim: string;
    dim: string;
    fg: string;
    underline: string;
}

Properties

attrib: string

HTML attrib name.

bg: string

Prefix string for background colors

bold: string

Bold format string

colors: string[]

Array of 16 color strings, in this order: black, red, green, yellow, blue, magenta, cyan, white, then repeated as bright versions.

delim: string

Delimiter between individual formatting terms (e.g. ; for CSS rules or for CSS class names).

dim: string

Dimmed format string

fg: string

Prefix string for foreground colors

underline: string

Underline format string

Generated using TypeDoc