VS Code API
    Preparing search index...

    Type Alias MarkedString

    MarkedString: string | { language: string; value: string }

    MarkedString can be used to render human-readable text. It is either a markdown string or a code-block that provides a language and a code snippet. Note that markdown strings will be sanitized - that means html will be escaped.

    Type Declaration

    • string
    • { language: string; value: string }
      • language: string

        The language of a markdown code block

        please use MarkdownString instead

      • value: string

        The code snippet of a markdown code block.

        please use MarkdownString instead

    This type is deprecated, please use MarkdownString instead.