* Converts the math node into an HTML markup string.
()
| 6776 | |
| 6777 | |
| 6778 | toMarkup() { |
| 6779 | if (this.character) { |
| 6780 | return `<mtext>${this.character}</mtext>`; |
| 6781 | } else { |
| 6782 | return `<mspace width="${this.width}em"/>`; |
| 6783 | } |
| 6784 | } |
| 6785 | /** |
| 6786 | * Converts the math node into a string, similar to innerText. |
| 6787 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected