diff --git a/webapp/utils/markdown.jsx b/webapp/utils/markdown.jsx index 9d4fdcb2e6..c84df0fa50 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);