From 0fc7808f3a41d2095a0f6bbbcd744aafca60d3b4 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 24 May 2022 12:40:31 -0400 Subject: [PATCH] Turn off html in markdown. Fixes #650 (#657) --- src/shared/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/utils.ts b/src/shared/utils.ts index 17497ae..0199f47 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -113,7 +113,7 @@ export function wsUserOp(msg: any): UserOperation { } export const md = new markdown_it({ - html: true, + html: false, linkify: true, typographer: true, }) -- 2.44.1