Changed markdown link parsing to automatically add an explicit protocol to urls
Этот коммит содержится в:
14
web/react/utils/markdown.jsx
Обычный файл
14
web/react/utils/markdown.jsx
Обычный файл
@@ -0,0 +1,14 @@
|
||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
const marked = require('marked');
|
||||
|
||||
export class MattermostMarkdownRenderer extends marked.Renderer {
|
||||
link(href, title, text) {
|
||||
if (href.lastIndexOf('http', 0) !== 0) {
|
||||
href = `http://${href}`;
|
||||
}
|
||||
|
||||
return super.link(href, title, text);
|
||||
}
|
||||
}
|
||||
Ссылка в новой задаче
Block a user