markdownmathjaxwmdwmd-editorpagedown

MathJax - Optimize performance on multiple typeset


I'm trying to implement partial rendering in my Markdown editor by converting Markdown/Tex in modified paragraphs only. So basically, I have a #preview element that contains multiple .preview_section elements containing themselves the converted HTML paragraphs. When I update one or more .preview_section element, I'd like MathJax to process only those elements.

I tried different approaches:

Is there any ways to tell MathJax not to processing those script elements? Or any ideas before I plunge myself into the source code... Thanks.


Solution

  • Ok, I just found my problem. MathJax stores a JavaScript object in every script[type="math/tex"] element in the DOM. This object, actually stored in element.MathJax, contains :

    checked: 1
    elementJax: Object
    preview: span.MathJax_Preview
    startNumber: 0
    state: 2
    

    where state is the state of the preview (2 means PROCESSED). So the TypeSet does not render the preview again if it has already been rendered, unless you rewrite the script tag in the DOM (that's what I was doing), this case you lose the MathJax object and the state of the preview. That's why MathJax was keeping re-rendering all my scripts.