Changed Markdown links to open in a new tab

Этот коммит содержится в:
hmhealey
2015-09-23 17:53:46 -04:00
родитель c7c644874e
Коммит 466f470ff1

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

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