From some external source (flash app for example) I get text (which is mix of simple html, wiki markdown and TeX/LaTeX). Currently I have: (I use jQuery)
function render(text)
{
$("#wikiContent").html(text);
MathJax.Hub.Typeset()
$("#wikiContent").html(Markdown_Showdown_Converter.makeHtml( $("#wikiContent").html()));
}
And that results in next problem - any complex math like such:
$$
\begin{eqnarray*}
B_1 + z_1 M_1 &\equiv& B_2 \pmod {M_2}
\\ B_1 + z_1 M_1 + z_2 M_1M_2 &\equiv& B_3 \pmod {M_3}
\\ &\cdots&
\\ B_1 + z_1M_1 + z_2 M_1M_2 + \cdots + z_{k-1}M_1 M_2 \cdots M_{k-1} &\equiv& B_k \pmod{M_k}.
\end{eqnarray*}
$$
gets broken=(
So I wonder how to put some var into MathJax and get html out of it?