forked from FoundKeyGang/FoundKey
Add block comment support
This commit is contained in:
parent
427dd7af18
commit
d548f128d9
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
code => {
|
||||
if (!/^['"`]/.test(code)) return null;
|
||||
|
|
Loading…
Reference in a new issue