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.  1bd4fdc943/library/std/src/fs.rs (L109)

Co-authored-by: Andrew Onyshchuk <andryk.rv@gmail.com>
This commit is contained in:
bors[bot] 2022-01-27 22:26:34 +00:00 committed by GitHub
commit 93036aa0e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,6 +155,9 @@ export function createClient(serverPath: string, workspace: Workspace, extraEnv:
);
}
},
markdown: {
supportHtml: true,
}
};