Update Core.js

This commit is contained in:
simonpipe 2026-07-07 21:08:24 +02:00
parent 796bc0d450
commit b2747c0970

View file

@ -286,7 +286,7 @@ class SimonUp {
html = html.replace(/\^(\d+)\[([^\]]+)\]\^/g, '<sup class="footnote-manual" title="$2">[$1]</sup>');
// 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;
}