Merge pull request #770 from hmhealey/plt339

PLT-339 Changed Markdown links to open in a new tab
Этот коммит содержится в:
Corey Hulen
2015-09-23 15:21:46 -07:00
родитель c7c644874e 466f470ff1
Коммит 23029204dc

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

@@ -31,7 +31,7 @@ export class MattermostMarkdownRenderer extends marked.Renderer {
if (title) { if (title) {
output += ' title="' + title + '"'; output += ' title="' + title + '"';
} }
output += '>' + text + '</a>'; output += ' target="_blank">' + text + '</a>';
return output; return output;
} }