From b2747c097082277f4e46a0db095b237db185cfdc Mon Sep 17 00:00:00 2001 From: simonpipe Date: Tue, 7 Jul 2026 21:08:24 +0200 Subject: [PATCH] Update Core.js --- Core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core.js b/Core.js index c3441b3..9017b11 100644 --- a/Core.js +++ b/Core.js @@ -286,7 +286,7 @@ class SimonUp { html = html.replace(/\^(\d+)\[([^\]]+)\]\^/g, '[$1]'); // 7. ESCAPE ZURĂśCKWANDELN - html = html.replace(//g, (match, code) => String.fromCharCode(parseInt(code))); + html = html.replace(/``/g, (match, code) => String.fromCharCode(parseInt(code))); return html; }