mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
// 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);
|
|
}
|
|
}
|