From: Dessalines Date: Tue, 24 May 2022 16:40:31 +0000 (-0400) Subject: Turn off html in markdown. Fixes #650 (#657) X-Git-Url: http://these/git/?a=commitdiff_plain;h=0fc7808f3a41d2095a0f6bbbcd744aafca60d3b4;p=lemmy-ui.git Turn off html in markdown. Fixes #650 (#657) --- 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, })