Module: LanguageServer::Protocol::Constant::MarkupKind

Defined in:
lib/language_server/protocol/constant/markup_kind.rb,
sig/language_server/protocol/constant/markup_kind.rbs

Overview

Describes the content type that a client supports in various result literals like Hover, ParameterInfo or CompletionItem.

Please note that MarkupKinds must not start with a $. This kinds are reserved for internal usage.

Constant Summary collapse

PLAIN_TEXT =

Plain text is supported as a content format

Returns:

  • ('plaintext')
'plaintext'
MARKDOWN =

Markdown is supported as a content format

Returns:

  • ('markdown')
'markdown'