Fix fucking bug

This commit is contained in:
syuilo 2017-02-10 02:21:46 +09:00
parent 472c251f4e
commit cb2e78b7cb

View file

@ -140,7 +140,9 @@ const elements = [
// comment
code => {
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 {
html: `<span class="comment">${escape(comment)}</span>`,
next: comment.length