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:
parent
eca8c6218f
commit
1ee71e4ab8
1 changed files with 0 additions and 2 deletions
2
notcl.js
2
notcl.js
|
@ -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 */) {
|
||||
|
|
Loading…
Reference in a new issue