summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/utils/markdown.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/webapp/utils/markdown.jsx b/webapp/utils/markdown.jsx
index 9d4fdcb2e..c84df0fa5 100644
--- a/webapp/utils/markdown.jsx
+++ b/webapp/utils/markdown.jsx
@@ -252,7 +252,8 @@ export function format(text, options = {}) {
renderer: new MattermostMarkdownRenderer(null, options),
sanitize: true,
gfm: true,
- tables: true
+ tables: true,
+ mangle: false
};
return marked(text, markdownOptions);