* Converts the math node into a string, similar to innerText, but escaped.
()
| 141 | * Converts the math node into a string, similar to innerText, but escaped. |
| 142 | */ |
| 143 | toText(): string { |
| 144 | return this.children.map(child => child.toText()).join(""); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | /** |