Add block comment support

This commit is contained in:
syuilo 2017-02-09 23:03:16 +09:00
parent 427dd7af18
commit d548f128d9
1 changed files with 10 additions and 0 deletions

View File

@ -101,6 +101,16 @@ const elements = [
}; };
}, },
// block comment
code => {
const match = code.match(/^\/\*([\s\S]+?)\*\//);
if (!match) return null;
return {
html: `<span class="comment">${escape(match[0])}</span>`,
next: match[0].length
};
},
// string // string
code => { code => {
if (!/^['"`]/.test(code)) return null; if (!/^['"`]/.test(code)) return null;