Merge pull request #423 from Khan/kern

Add support for \kern
This commit is contained in:
Kevin Barabash
2016-04-19 21:22:24 -07:00
7 changed files with 62 additions and 0 deletions

View File

@@ -444,6 +444,13 @@ groupTypes.rule = function(group) {
return node;
};
groupTypes.kern = function(group) {
// TODO(kevin): Figure out if there's a way to add space in MathML
var node = new mathMLTree.MathNode("mrow");
return node;
};
groupTypes.llap = function(group, options) {
var node = new mathMLTree.MathNode(
"mpadded", [buildGroup(group.value.body, options)]);