We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eb7efc commit 9310777Copy full SHA for 9310777
1 file changed
frontend/src/pages/chatPreview/utils/marked-process.ts
@@ -17,6 +17,9 @@ export const markedProcess = (content) => {
17
tool: [],
18
step: []
19
},
20
+ escapeHtml: (html: string) => {
21
+ return html;
22
+ },
23
};
24
const clean = xss(content, config);
25
return marked(clean, {
@@ -27,4 +30,4 @@ export const markedProcess = (content) => {
27
30
}
28
31
29
32
})
-};
33
+};
0 commit comments