UNPKG

2.47 kBJavaScriptView Raw
1const marked = require('./marked');
2const babel = require('babel-core');
3const renderer = new marked.Renderer();
4
5let res = '';
6
7const id = 'comp' + Math.random();
8
9const oldCode = renderer.code;
10
11// marked.setOptions({
12// highlight: function (code) {
13// return require('highlight.js').highlightAuto(code).value;
14// }
15// });
16
17function escape(html, encode) {
18 return html
19 .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&')
20 .replace(/</g, '&lt;')
21 .replace(/>/g, '&gt;')
22 .replace(/"/g, '&quot;')
23 .replace(/'/g, '&#39;');
24}
25
26function unescape(html) {
27 // explicitly match decimal, hex, and named HTML entities
28 return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
29 n = n.toLowerCase();
30 if (n === 'colon') return ':';
31 if (n.charAt(0) === '#') {
32 return n.charAt(1) === 'x'
33 ? String.fromCharCode(parseInt(n.substring(2), 16))
34 : String.fromCharCode(+n.substring(1));
35 }
36 return '';
37 });
38}
39
40renderer.code = (code, lang, escaped) => {
41 res += code + '\n';
42 // console.log(babel.transform(code, {
43 // plugins: ["transform-react-jsx"]
44 // }));
45 // const comp = babel.transform(code, {
46 // plugins: ["transform-react-jsx"]
47 // });
48
49 // eval(comp);
50
51
52 return `
53 <div>
54 <div id=${id}></div>
55 <pre><code>${escape(code)}</code></pre>
56 </div>`;
57}
58
59renderer.table = function (header, body) {
60 return '<table class="table table-striped">'+header+body+'</table>'
61}
62
63renderer.list = function(body, ordered) {
64 var type = ordered ? 'ol' : 'ul';
65 var styles = ordered ? 'upper-roman' : 'disc';
66 return '<' + type + ' style="padding-left:40px; list-style-type:'+ styles + ';" >\n' + body + '</' + type + '>\n';
67}
68
69function process(source) {
70 source = marked(source, {
71 renderer: renderer,
72 gfm: true,
73 tables: true,
74 breaks: true,
75 pedantic: false,
76 sanitize: true,
77 smartLists: true,
78 smartypants: false
79 });
80
81 const res = JSON.stringify(source);
82 return res;
83}
84
85
86module.exports = function(source, map){
87 this.cacheable && this.cacheable();
88 //对source进行解析
89 var md = process(source);
90 res += `\n export const md=${md}; \n export const id="${id};"`
91 console.log('----------------')
92 console.log(res);
93 console.log('--------------')
94
95 this.callback(null, res, map);
96 // return "module.exports = " + '{}';
97}
\No newline at end of file