How can I add MathJax support? I would like to be able to render math formulas on my forum.
Here's what I've done so far:
I created a block in block_head region with this content:
<script type='text/x-mathjax-config'>
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$', '$'], ['\\(','\\)']]}
});
</script>
<script src='http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' type='text/javascript'>
</script>
So now the formulas render when I open a post:

But not when I look at all the posts I created in the profile

And, more importantly, not during the preview

Is there a way to force-render mathjax?
How can I add MathJax support? I would like to be able to render math formulas on my forum.
Here's what I've done so far:
I created a block in `block_head` region with this content:
```
&lt;script type='text/x-mathjax-config'&gt;
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$', '$'], ['\\(','\\)']]}
});
&lt;/script&gt;
&lt;script src='http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' type='text/javascript'&gt;
&lt;/script&gt;
```
So now the formulas render when I open a post:
http://habrastorage.org/files/575/09c/1cb/57509c1cbee9460caaa976d3d7803b36.png
But not when I look at all the posts I created in the profile
http://habrastorage.org/files/c11/c98/7c5/c11c987c5db84d899a5396ffaa1b2b32.png
And, more importantly, not during the preview
http://habrastorage.org/files/6a1/c3a/d8b/6a1c3ad8b09540f5981f8855118c5d9e.png
Is there a way to force-render mathjax?