Disabled mangling of email addresses in markdown autolinks (#5192)

Этот коммит содержится в:
Harrison Healey
2017-01-25 21:13:17 -05:00
коммит произвёл enahum
родитель 78ca999692
Коммит 57d9d0ad1e

Просмотреть файл

@@ -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);