mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-26 22:31:13 +00:00
Merge pull request #499 from LemmyNet/enable_markdown_html
Enabling html tags in markdown. Fixes #498
This commit is contained in:
commit
86f269aa98
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ export function wsUserOp(msg: any): UserOperation {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const md = new markdown_it({
|
export const md = new markdown_it({
|
||||||
html: false,
|
html: true,
|
||||||
linkify: true,
|
linkify: true,
|
||||||
typographer: true,
|
typographer: true,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue