Skip to content

Commit 6693617

Browse files
committed
Remove vestigial comment in advancedSymbols.js
TeX backslash control sequences are letters-only, whereas HTML character entity references are alphanumeric; therefore `∴` is a valid character entity reference, but `\there4` cannot be a valid control sequence. Initially I hoped to support every character entity reference as a backslash command, but we can't support this one, so forget it. The out-of-place "case" is because backslash commands used to be a switch/case, not a dictionary: mathquill@77bd6c4#diff-239c238d8c090904fa1a9261bf2ef674L961
1 parent bdabebd commit 6693617

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/math/advancedSymbols.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LatexCmds['≠'] = LatexCmds.ne = LatexCmds.neq = bind(BinaryOperator,'\\ne ','&
1616

1717
LatexCmds['∗'] = LatexCmds.ast = LatexCmds.star = LatexCmds.loast = LatexCmds.lowast =
1818
bind(BinaryOperator,'\\ast ','∗');
19-
//case 'there4 = // a special exception for this one, perhaps?
19+
2020
LatexCmds.therefor = LatexCmds.therefore =
2121
bind(BinaryOperator,'\\therefore ','∴');
2222

0 commit comments

Comments
 (0)