* Get HTML representation * @param {Object} options * @return {string}
(options)
| 191 | * @return {string} |
| 192 | */ |
| 193 | _toHTML (options) { |
| 194 | let object = this.object.toHTML(options) |
| 195 | if (needParenthesis(this.object)) { |
| 196 | object = |
| 197 | '<span class="math-parenthesis math-round-parenthesis">(</span>' + |
| 198 | object + |
| 199 | '<span class="math-parenthesis math-round-parenthesis">)</span>' |
| 200 | } |
| 201 | |
| 202 | return object + this.index.toHTML(options) |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Get LaTeX representation |
nothing calls this directly
no test coverage detected