blob: 3f2d3531c0c32b2d1596cf88d94ff7cb2d687b12 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2016 TypeFox and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
******************************************************************************/
package org.eclipse.lsp4j;
/**
* Describes the content type that a client supports in various
* result literals like `Hover`, `ParameterInfo` or `CompletionItem`.
*
* Please note that `MarkupKind`s must not start with a `$`. These kinds
* are reserved for internal usage.
*/
public final class MarkupKind {
private MarkupKind() {}
/**
* Plain text is supported as a content format.
*/
public static final String PLAINTEXT = "plaintext";
/**
* Markdown is supported as a content format.
*/
public static final String MARKDOWN = "markdown";
}