(group, options)
| 9691 | }; |
| 9692 | |
| 9693 | var array_mathmlBuilder = function mathmlBuilder(group, options) { |
| 9694 | return new mathMLTree.MathNode("mtable", group.body.map(function (row) { |
| 9695 | return new mathMLTree.MathNode("mtr", row.map(function (cell) { |
| 9696 | return new mathMLTree.MathNode("mtd", [buildMathML_buildGroup(cell, options)]); |
| 9697 | })); |
| 9698 | })); |
| 9699 | }; // Convenience function for aligned and alignedat environments. |
| 9700 | |
| 9701 | |
| 9702 | var array_alignedHandler = function alignedHandler(context, args) { |
nothing calls this directly
no test coverage detected