Interface MarkdownClientCapabilities

Client capabilities specific to the used markdown parser.

3.16.0

interface MarkdownClientCapabilities {
    allowedTags?: string[];
    parser: string;
    version?: string;
}

Properties

allowedTags?: string[]

A list of HTML tags that the client allows / supports in Markdown.

3.17.0

parser: string

The name of the parser.

version?: string

The version of the parser.