Added support for \not (#140)

* Added support for \not

* fix grammar in comment
This commit is contained in:
Kevin Barabash
2017-08-23 13:24:17 -04:00
committed by GitHub
parent 201193233e
commit c6647e3303
8 changed files with 51 additions and 0 deletions

View File

@@ -661,6 +661,9 @@ const buildExpression = function(expression, options) {
const group = expression[i];
groups.push(buildGroup(group, options));
}
// TODO(kevinb): combine \\not with mrels and mords
return groups;
};