The results of a successful rendering of a mermaid text-based diagram.

interface IRenderInfo {
    accessibleDescription?: null | string;
    accessibleTitle?: null | string;
    svg: string;
    text: string;
    width?: null | number;
}

Properties

accessibleDescription?: null | string

The extracted accessible description, if found.

accessibleTitle?: null | string

The extracted accessible title, if found.

svg: string

The raw rendered SVG.

text: string

the original source of the diagram.

width?: null | number

The extracted width of the digaram, if found.