2016-09-23 00:18:12 +08:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-11-30 03:56:48 +08:00
|
|
|
import commonmark from 'commonmark';
|
2016-09-23 00:18:12 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class that wraps marked, adding the ability to see whether
|
|
|
|
* a given message actually uses any markdown syntax or whether
|
|
|
|
* it's plain text.
|
|
|
|
*/
|
|
|
|
export default class Markdown {
|
|
|
|
constructor(input) {
|
2016-11-30 03:56:48 +08:00
|
|
|
this.input = input
|
2016-09-23 00:18:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
isPlainText() {
|
|
|
|
// we determine if the message requires markdown by
|
|
|
|
// running the parser on the tokens with a dummy
|
|
|
|
// rendered and seeing if any of the renderer's
|
|
|
|
// functions are called other than those noted below.
|
|
|
|
// In case you were wondering, no we can't just examine
|
|
|
|
// the tokens because the tokens we have are only the
|
|
|
|
// output of the *first* tokenizer: any line-based
|
|
|
|
// markdown is processed by marked within Parser by
|
|
|
|
// the 'inline lexer'...
|
|
|
|
let is_plain = true;
|
|
|
|
|
|
|
|
function setNotPlain() {
|
|
|
|
is_plain = false;
|
|
|
|
}
|
|
|
|
|
2016-11-30 03:56:48 +08:00
|
|
|
const dummy_renderer = new commonmark.HtmlRenderer();
|
|
|
|
for (const k of Object.keys(commonmark.HtmlRenderer.prototype)) {
|
2016-09-23 01:57:46 +08:00
|
|
|
dummy_renderer[k] = setNotPlain;
|
2016-09-23 00:18:12 +08:00
|
|
|
}
|
|
|
|
// text and paragraph are just text
|
2016-11-30 03:56:48 +08:00
|
|
|
dummy_renderer.text = function(t) { return t; }
|
|
|
|
dummy_renderer.paragraph = function(t) { return t; }
|
2016-09-23 00:18:12 +08:00
|
|
|
|
2016-11-30 03:56:48 +08:00
|
|
|
const dummy_parser = new commonmark.Parser();
|
|
|
|
dummy_renderer.render(dummy_parser.parse(this.input));
|
2016-09-23 00:18:12 +08:00
|
|
|
|
|
|
|
return is_plain;
|
|
|
|
}
|
|
|
|
|
2016-12-03 02:58:35 +08:00
|
|
|
render(html) {
|
2016-11-30 03:56:48 +08:00
|
|
|
const parser = new commonmark.Parser();
|
2016-09-23 01:57:46 +08:00
|
|
|
|
2016-11-30 03:56:48 +08:00
|
|
|
const renderer = new commonmark.HtmlRenderer({safe: true});
|
|
|
|
const real_paragraph = renderer.paragraph;
|
2016-12-03 02:58:35 +08:00
|
|
|
if (html) {
|
|
|
|
renderer.paragraph = function(node, entering) {
|
|
|
|
// If there is only one top level node, just return the
|
|
|
|
// bare text: it's a single line of text and so should be
|
|
|
|
// 'inline', rather than unnecessarily wrapped in its own
|
|
|
|
// p tag. If, however, we have multiple nodes, each gets
|
|
|
|
// its own p tag to keep them as separate paragraphs.
|
|
|
|
var par = node;
|
|
|
|
while (par.parent) {
|
|
|
|
par = par.parent
|
|
|
|
}
|
|
|
|
if (par.firstChild != par.lastChild) {
|
|
|
|
real_paragraph.call(this, node, entering);
|
|
|
|
}
|
2016-11-30 03:56:48 +08:00
|
|
|
}
|
2016-12-03 02:58:35 +08:00
|
|
|
} else {
|
|
|
|
renderer.paragraph = function(node, entering) {
|
2017-01-18 03:32:06 +08:00
|
|
|
// If there is only one top level node, just return the
|
|
|
|
// bare text: it's a single line of text and so should be
|
|
|
|
// 'inline', rather than unnecessarily wrapped in its own
|
|
|
|
// p tag. If, however, we have multiple nodes, each gets
|
|
|
|
// its own p tag to keep them as separate paragraphs.
|
|
|
|
var par = node;
|
|
|
|
while (par.parent) {
|
|
|
|
node = par;
|
|
|
|
par = par.parent;
|
|
|
|
}
|
|
|
|
if (node != par.lastChild) {
|
|
|
|
if (!entering) {
|
|
|
|
this.lit('\n\n');
|
|
|
|
}
|
2016-12-03 02:58:35 +08:00
|
|
|
}
|
2016-09-23 01:57:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-30 03:56:48 +08:00
|
|
|
var parsed = parser.parse(this.input);
|
|
|
|
return renderer.render(parsed);
|
2016-09-23 00:18:12 +08:00
|
|
|
}
|
|
|
|
}
|