Initial HTML escape plan is a bust, for the excellent reason that & contains a semicolon

which is meaningful TCL-ish syntax.
This commit is contained in:
Tangent Wantwight 2023-07-27 02:00:23 -04:00
parent eca8c6218f
commit 1ee71e4ab8

View file

@ -16,8 +16,6 @@ function parseNotcl(code) {
/* Preprocess */
// fold line endings
code = code.replace(/(?<!\\)(\\\\)*\\n/g, "$1");
// escape HTML
code = escapeHtml(code);
/* Parse */
function nextWord(/* TODO: null/] terminator */) {