From c2088acf2498dfd9a56dac753f3a7f3cd9a4f4b2 Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Tue, 12 Apr 2022 12:35:12 +0100 Subject: [PATCH 1/2] Add a note about relative links in MarkupContent --- _specifications/lsp/3.17/types/markupContent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_specifications/lsp/3.17/types/markupContent.md b/_specifications/lsp/3.17/types/markupContent.md index 3b5c29046..7c59f6758 100644 --- a/_specifications/lsp/3.17/types/markupContent.md +++ b/_specifications/lsp/3.17/types/markupContent.md @@ -1,6 +1,6 @@ #### MarkupContent - A `MarkupContent` literal represents a string value which content can be represented in different formats. Currently `plaintext` and `markdown` are supported formats. A `MarkupContent` is usually used in documentation properties of result literals like `CompletionItem` or `SignatureInformation`. If the format is `markdown` the content should follow the [GitHub Flavored Markdown Specification](https://github.github.com/gfm/). + A `MarkupContent` literal represents a string value which content can be represented in different formats. Currently `plaintext` and `markdown` are supported formats. A `MarkupContent` is usually used in documentation properties of result literals like `CompletionItem` or `SignatureInformation`. If the format is `markdown` the content should follow the [GitHub Flavored Markdown Specification](https://github.github.com/gfm/). `MarkupContent` in returned in responses to requests that are scoped to a document may contain relative links, which will be resolved relative to that document. ```typescript /** From 96c8344b7a9ae68031c117a12d4e5904bf35a63a Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Tue, 12 Apr 2022 14:23:49 +0100 Subject: [PATCH 2/2] Remove words --- _specifications/lsp/3.17/types/markupContent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_specifications/lsp/3.17/types/markupContent.md b/_specifications/lsp/3.17/types/markupContent.md index 7c59f6758..b6ab4f842 100644 --- a/_specifications/lsp/3.17/types/markupContent.md +++ b/_specifications/lsp/3.17/types/markupContent.md @@ -1,6 +1,6 @@ #### MarkupContent - A `MarkupContent` literal represents a string value which content can be represented in different formats. Currently `plaintext` and `markdown` are supported formats. A `MarkupContent` is usually used in documentation properties of result literals like `CompletionItem` or `SignatureInformation`. If the format is `markdown` the content should follow the [GitHub Flavored Markdown Specification](https://github.github.com/gfm/). `MarkupContent` in returned in responses to requests that are scoped to a document may contain relative links, which will be resolved relative to that document. + A `MarkupContent` literal represents a string value which content can be represented in different formats. Currently `plaintext` and `markdown` are supported formats. A `MarkupContent` is usually used in documentation properties of result literals like `CompletionItem` or `SignatureInformation`. If the format is `markdown` the content should follow the [GitHub Flavored Markdown Specification](https://github.github.com/gfm/). `MarkupContent` in responses to requests that are scoped to a document may contain relative links, which will be resolved relative to that document. ```typescript /**