]> Untitled Git - lemmy-ui.git/commitdiff
Enabling html tags in markdown. Fixes #498
authorDessalines <tyhou13@gmx.com>
Fri, 19 Nov 2021 21:09:28 +0000 (16:09 -0500)
committerDessalines <tyhou13@gmx.com>
Fri, 19 Nov 2021 21:09:28 +0000 (16:09 -0500)
src/shared/utils.ts

index 2be1c4adbe4686180d9b77915b9c39050fbeb975..3fdafb39933df4cf4b6f5868fa8730de00636408 100644 (file)
@@ -213,7 +213,7 @@ export function wsUserOp(msg: any): UserOperation {
 }
 
 export const md = new markdown_it({
-  html: false,
+  html: true,
   linkify: true,
   typographer: true,
 })