Update Core.js
This commit is contained in:
parent
5cb8ccc607
commit
bd0a140f14
1 changed files with 2 additions and 2 deletions
4
Core.js
4
Core.js
|
|
@ -217,7 +217,7 @@ class SimonUp {
|
||||||
const escapes = [];
|
const escapes = [];
|
||||||
html = html.replace(/\\(.)/g, function(match, char) {
|
html = html.replace(/\\(.)/g, function(match, char) {
|
||||||
escapes.push(char);
|
escapes.push(char);
|
||||||
return ``;
|
return '';
|
||||||
});
|
});
|
||||||
|
|
||||||
html = html.replace(/\/\/(\s|$)/g, '$1');
|
html = html.replace(/\/\/(\s|$)/g, '$1');
|
||||||
|
|
@ -423,4 +423,4 @@ class SimonUp {
|
||||||
|
|
||||||
return processed.join('\n');
|
return processed.join('\n');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue