1.问题:
showdown转html
let converter = new showdown.Converter({"tables": true});
let htmlcontent = converter.makeHtml(markDownMessage);
如果解析的消息很大,浏览器会出现 out of memory crash
2.解决:
采用 let html = marked(markDownMessage)
1.问题:
showdown转html
let converter = new showdown.Converter({"tables": true});
let htmlcontent = converter.makeHtml(markDownMessage);
如果解析的消息很大,浏览器会出现 out of memory crash
2.解决:
采用 let html = marked(markDownMessage)