Merge pull request #499 from LemmyNet/enable_markdown_html

Enabling html tags in markdown. Fixes #498
This commit is contained in:
Dessalines 2021-11-22 15:05:21 -05:00 committed by GitHub
commit 86f269aa98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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,
})