forked from FoundKeyGang/FoundKey
Fix fucking bug
This commit is contained in:
parent
472c251f4e
commit
cb2e78b7cb
1 changed files with 3 additions and 1 deletions
|
@ -140,7 +140,9 @@ const elements = [
|
||||||
// comment
|
// comment
|
||||||
code => {
|
code => {
|
||||||
if (code.substr(0, 2) != '//') return null;
|
if (code.substr(0, 2) != '//') return null;
|
||||||
const comment = code.match(/^\/\/(.+?)\n/)[0];
|
const match = code.match(/^\/\/(.+?)\n/);
|
||||||
|
if (!match) return null;
|
||||||
|
const comment = match[0];
|
||||||
return {
|
return {
|
||||||
html: `<span class="comment">${escape(comment)}</span>`,
|
html: `<span class="comment">${escape(comment)}</span>`,
|
||||||
next: comment.length
|
next: comment.length
|
||||||
|
|
Loading…
Reference in a new issue