Fix some small, but blocking, issues

This commit is contained in:
cc-wr 2019-08-24 15:08:55 -04:00
parent 5faf681109
commit c6033abeb0
2 changed files with 6 additions and 4 deletions

View File

@ -125,7 +125,8 @@ If[
]
] &
) /@
(
(* only use lists with at least three items *)
Select[
(* parse the rows into their items (where each item is separated by two tabs) *)
(StringSplit[#1, "\t\t"] &) /@
(
@ -135,8 +136,9 @@ If[
"\n"
(* drop the first row *)
][[2 ;;]]
)
);
),
(Length[#1] >= 3) &
];
(* parse the data into an association of names and the named characters they correspond to *)
unicodeNamedCharactersReplacements =

View File

@ -28,7 +28,7 @@ function redirectEsc(event) {
/* the vertical ellipsis character */
String.fromCharCode(8942)
);
event.preventDefault();
event.stopImmediatePropagation();
}
}