// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. const TextFormatting = require('./text_formatting.jsx'); const Utils = require('./utils.jsx'); const marked = require('marked'); export class MattermostMarkdownRenderer extends marked.Renderer { constructor(options, formattingOptions = {}) { super(options); this.heading = this.heading.bind(this); this.paragraph = this.paragraph.bind(this); this.text = this.text.bind(this); this.formattingOptions = formattingOptions; } br() { if (this.formattingOptions.singleline) { return ' '; } return super.br(); } heading(text, level, raw) { const id = `${this.options.headerPrefix}${raw.toLowerCase().replace(/[^\w]+/g, '-')}`; return `${text}`; } link(href, title, text) { let outHref = href; if (!(/^(mailto|https?|ftp)/.test(outHref))) { outHref = `http://${outHref}`; } let output = ''; return output; } paragraph(text) { let outText = text; // required so markdown does not strip '_' from @user_names outText = TextFormatting.doFormatMentions(text); if (!('emoticons' in this.options) || this.options.emoticon) { outText = TextFormatting.doFormatEmoticons(outText); } if (this.formattingOptions.singleline) { return `

${outText}

`; } return super.paragraph(outText); } table(header, body) { return `${header}${body}
`; } text(txt) { return TextFormatting.doFormatText(txt, this.formattingOptions); } }