(label)
| 7078 | }; |
| 7079 | |
| 7080 | const mathMLnode = function mathMLnode(label) { |
| 7081 | const node = new mathMLTree.MathNode("mo", [new mathMLTree.TextNode(stretchyCodePoint[label.substr(1)])]); |
| 7082 | node.setAttribute("stretchy", "true"); |
| 7083 | return node; |
| 7084 | }; // Many of the KaTeX SVG images have been adapted from glyphs in KaTeX fonts. |
| 7085 | // Copyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>) |
| 7086 | // Copyright (c) 2014-2017 Khan Academy (<www.khanacademy.org>) |
| 7087 | // Licensed under the SIL Open Font License, Version 1.1. |
nothing calls this directly
no test coverage detected