We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 645412d commit dcd3543Copy full SHA for dcd3543
widgets/js/index.tsx
@@ -11,6 +11,7 @@ import {
11
EstimatesPanel,
12
ReData,
13
Circuit,
14
+ setRenderer,
15
} from "qsharp-lang/ux";
16
import markdownIt from "markdown-it";
17
@@ -20,6 +21,7 @@ import mk from "@vscode/markdown-it-katex";
20
21
22
const md = markdownIt();
23
md.use(mk);
24
+setRenderer((input: string) => md.render(input));
25
26
export function mdRenderer(input: string) {
27
// Note: Need to ensure this 'fix' is still needed with the latest data JSON.
0 commit comments