From 5d5b302676a16f197227bdc68c78bac38d3b26bb Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 19 Nov 2021 16:09:28 -0500 Subject: [PATCH] Enabling html tags in markdown. Fixes #498 --- 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 2be1c4a..3fdafb3 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -213,7 +213,7 @@ export function wsUserOp(msg: any): UserOperation { } export const md = new markdown_it({ - html: false, + html: true, linkify: true, typographer: true, }) -- 2.44.1