Reputation: 610
Can I make Mathjax to not render the latex on the page inmediately?
I could remove all the $
symbols on the html and later on add them and call the typeset function MathJax.Hub.Queue(["Typeset",MathJax.Hub])
, but I'm asking if there's a better way to delay Mathjax from rendering the latex on the page.
Upvotes: 1
Views: 159
Reputation: 610
I just found this code that does the thing:
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
skipStartupTypeset: true
});
</script>
Upvotes: 1