Update Core.js

This commit is contained in:
simonpipe 2026-07-09 18:23:38 +02:00
parent 5cb8ccc607
commit bd0a140f14

View file

@ -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');