We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e0b90 commit 7101494Copy full SHA for 7101494
redisinsight/ui/src/utils/formatters/markdown/remarkSanitize.ts
@@ -21,7 +21,6 @@ export const remarkSanitize = (): (tree: Node) => void => (tree: any) => {
21
visit(tree, 'html', (node) => {
22
const dangerousAttrRegex = new RegExp(`\\s*(${dangerousAttributes})="[^"]*"`, 'gi')
23
24
- console.log(node.value)
25
if (node.value.match(dangerousAttrRegex)) {
26
node.value = node.value.replace(dangerousAttrRegex, (match: string) => {
27
const attr = match.toLowerCase().trim()
0 commit comments