2017-02-08 09:07:06 -07:00
|
|
|
/**
|
|
|
|
* Code
|
|
|
|
*/
|
|
|
|
|
|
|
|
const regexp = /```([\s\S]+?)```/;
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
test: x => new RegExp('^' + regexp.source).test(x),
|
|
|
|
parse: text => {
|
|
|
|
const code = text.match(new RegExp('^' + regexp.source))[0];
|
|
|
|
return {
|
|
|
|
type: 'code',
|
|
|
|
content: code,
|
2017-02-09 03:41:17 -07:00
|
|
|
code: code.substr(3, code.length - 6).trim(),
|
|
|
|
codeHtml: genHtml(code.substr(3, code.length - 6).trim())
|
2017-02-08 09:07:06 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
2017-02-09 03:41:17 -07:00
|
|
|
|
|
|
|
function escape(text) {
|
|
|
|
return text
|
|
|
|
.replace(/>/g, '>')
|
|
|
|
.replace(/</g, '<');
|
|
|
|
}
|
|
|
|
|
|
|
|
// 文字数が多い順にソートします
|
|
|
|
// そうしないと、「function」という文字列が与えられたときに「func」が先にマッチしてしまう可能性があるためです
|
|
|
|
const keywords = [
|
|
|
|
'true',
|
|
|
|
'false',
|
|
|
|
'null',
|
|
|
|
'nil',
|
|
|
|
'undefined',
|
|
|
|
'var',
|
|
|
|
'const',
|
|
|
|
'let',
|
|
|
|
'mut',
|
|
|
|
'if',
|
|
|
|
'then',
|
|
|
|
'else',
|
|
|
|
'switch',
|
|
|
|
'case',
|
|
|
|
'for',
|
|
|
|
'each',
|
|
|
|
'in',
|
|
|
|
'while',
|
|
|
|
'loop',
|
|
|
|
'continue',
|
|
|
|
'break',
|
|
|
|
'do',
|
|
|
|
'goto',
|
|
|
|
'end',
|
|
|
|
'function',
|
|
|
|
'func',
|
|
|
|
'fn',
|
|
|
|
'return',
|
|
|
|
'async',
|
|
|
|
'await',
|
|
|
|
'require',
|
|
|
|
'import',
|
|
|
|
'export',
|
|
|
|
'new',
|
|
|
|
'this',
|
|
|
|
'class',
|
|
|
|
'constructor'
|
|
|
|
].sort((a, b) => b.length - a.length);
|
|
|
|
|
|
|
|
const symbols = [
|
|
|
|
'=',
|
|
|
|
'+',
|
|
|
|
'-',
|
|
|
|
'*',
|
|
|
|
'/',
|
|
|
|
'%',
|
|
|
|
'^',
|
|
|
|
'&',
|
|
|
|
'|',
|
|
|
|
'>',
|
|
|
|
'<',
|
|
|
|
'~'
|
|
|
|
];
|
|
|
|
|
2017-02-09 04:13:44 -07:00
|
|
|
// 変数宣言
|
|
|
|
const varDef = [
|
|
|
|
'var',
|
|
|
|
'const',
|
|
|
|
'let',
|
|
|
|
'mut'
|
|
|
|
];
|
|
|
|
|
2017-02-09 03:41:17 -07:00
|
|
|
const elements = [
|
|
|
|
// comment
|
|
|
|
code => {
|
|
|
|
if (code.substr(0, 2) != '//') return null;
|
|
|
|
const comment = code.match(/^\/\/(.+?)\n/)[0];
|
|
|
|
return {
|
|
|
|
html: `<span class="comment">${escape(comment)}</span>`,
|
|
|
|
next: comment.length
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
// string
|
|
|
|
code => {
|
|
|
|
if (!/^['"`]/.test(code)) return null;
|
|
|
|
const begin = code[0];
|
|
|
|
let str = begin;
|
|
|
|
let thisIsNotAString = false;
|
2017-02-09 04:23:51 -07:00
|
|
|
for (let i = 1; i < code.length; i++) {
|
2017-02-09 03:41:17 -07:00
|
|
|
const char = code[i];
|
|
|
|
if (char == '\\') {
|
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
} else if (char == begin) {
|
|
|
|
str += char;
|
|
|
|
break;
|
|
|
|
} else if (char == '\n' || i == (code.length - 1)) {
|
|
|
|
thisIsNotAString = true;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
str += char;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (thisIsNotAString) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
html: `<span class="string">${escape(str)}</span>`,
|
|
|
|
next: str.length
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-02-09 04:13:44 -07:00
|
|
|
// extract vars
|
|
|
|
(code, i, source, vars) => {
|
|
|
|
const prev = source[i - 1];
|
|
|
|
if (prev && /[a-zA-Z]/.test(prev)) return null;
|
|
|
|
|
|
|
|
const match = varDef.filter(v => code.substr(0, v.length + 1) == v + ' ')[0];
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
const bar = code.substr(match.length + 1).match(/^[a-zA-Z0-9_-]+/);
|
|
|
|
if (bar) {
|
|
|
|
if (!keywords.some(k => k == bar)) {
|
|
|
|
vars.push(bar[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
// vars
|
|
|
|
(code, i, source, vars) => {
|
|
|
|
const prev = source[i - 1];
|
|
|
|
if (prev && /[a-zA-Z]/.test(prev)) return null;
|
|
|
|
|
|
|
|
const match = vars.sort((a, b) => b.length - a.length)
|
|
|
|
.filter(v => code.substr(0, v.length) == v)[0];
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
if (/^[a-zA-Z]/.test(code.substr(match.length))) return null;
|
|
|
|
return {
|
|
|
|
html: `<span class="var">${match}</span>`,
|
|
|
|
next: match.length
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-02-09 03:41:17 -07:00
|
|
|
// number
|
|
|
|
(code, i, source) => {
|
|
|
|
const prev = source[i - 1];
|
|
|
|
if (prev && /[a-zA-Z]/.test(prev)) return null;
|
2017-02-09 04:32:45 -07:00
|
|
|
if (!/^\-?[0-9]+/.test(code)) return null;
|
|
|
|
const match = code.match(/^\-?[0-9-]+/)[0];
|
2017-02-09 03:41:17 -07:00
|
|
|
if (match) {
|
|
|
|
return {
|
|
|
|
html: `<span class="number">${match}</span>`,
|
|
|
|
next: match.length
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// keyword
|
2017-02-09 04:13:44 -07:00
|
|
|
(code, i, source) => {
|
|
|
|
const prev = source[i - 1];
|
|
|
|
if (prev && /[a-zA-Z]/.test(prev)) return null;
|
|
|
|
|
2017-02-09 03:41:17 -07:00
|
|
|
const match = keywords.filter(k => code.substr(0, k.length) == k)[0];
|
|
|
|
if (match) {
|
|
|
|
if (/^[a-zA-Z]/.test(code.substr(match.length))) return null;
|
|
|
|
return {
|
|
|
|
html: `<span class="keyword ${match}">${match}</span>`,
|
|
|
|
next: match.length
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// symbol
|
|
|
|
code => {
|
|
|
|
const match = symbols.filter(s => code[0] == s)[0];
|
|
|
|
if (match) {
|
|
|
|
return {
|
|
|
|
html: `<span class="symbol">${match}</span>`,
|
|
|
|
next: 1
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
// specify lang is todo
|
|
|
|
function genHtml(source, lang) {
|
|
|
|
let code = source;
|
|
|
|
let html = '';
|
|
|
|
|
2017-02-09 04:13:44 -07:00
|
|
|
let vars = [];
|
|
|
|
|
|
|
|
let i = 0;
|
|
|
|
|
2017-02-09 03:41:17 -07:00
|
|
|
function push(token) {
|
|
|
|
html += token.html;
|
|
|
|
code = code.substr(token.next);
|
2017-02-09 04:13:44 -07:00
|
|
|
i += token.next;
|
2017-02-09 03:41:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
while (code != '') {
|
|
|
|
const parsed = elements.some(el => {
|
2017-02-09 04:13:44 -07:00
|
|
|
const e = el(code, i, source, vars);
|
2017-02-09 03:41:17 -07:00
|
|
|
if (e) {
|
|
|
|
push(e);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!parsed) {
|
|
|
|
push({
|
|
|
|
html: escape(code[0]),
|
|
|
|
next: 1
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return html;
|
|
|
|
}
|