Hi,
Suppose I have some HTML that looks like
The determinant of a quadratic polynomial <span class="math-inline">ax^2 + bx + c</span> is <span class="math-display">\Delta := b^2 - 4ac</span>
instead of
The determinant of a quadratic polynomial \(ax^2 + bx+c\) is \[\Delta := b^2 - 4ac\]
What's the simplest way to make MathJax render this? I would prefer to avoid inserting delimiters around the math spans through JavaScript and having them parsed by MathJax, and instead make MathJax directly take the HTML content of these <span> tags as input. But most importantly, I really want to avoid MathJax searching the text from the whole page for \( and \[, to speed up loading.
Thanks,
Jean