summaryrefslogtreecommitdiffstats
path: root/web/react/utils/markdown.jsx
blob: 880e41a18227c771cf9679a3654d46ad9264c8eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
    }
}