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]>
bors[bot] 2022-01-28
parent b55a1c5 · parent a05e09a · commit 93036aa
-rw-r--r--editors/code/src/client.ts3
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,
}
};