Unnamed repository; edit this file 'description' to name the repository.
Merge #11288
11288: Support <code> blocks from Rust docs in vscode hover r=oandrew a=oandrew
Set `"supportHtml": true` to support rendering `<code>` blocks in hovers.
e.g. https://github.com/rust-lang/rust/blob/1bd4fdc943513e1004f498bbf289279c9784fc6f/library/std/src/fs.rs#L109
Co-authored-by: Andrew Onyshchuk <[email protected]>
| -rw-r--r-- | editors/code/src/client.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts index 3e9788c98c..26567c6df3 100644 --- a/editors/code/src/client.ts +++ b/editors/code/src/client.ts @@ -155,6 +155,9 @@ export function createClient(serverPath: string, workspace: Workspace, extraEnv: ); } + }, + markdown: { + supportHtml: true, } }; |