Open
Description
Currently, Mathjax is a little akward to use because we only support the \( ... \)
and \[ ... \]
method to indicate inline and block equations respectively. On top of that, backslashes need to be escaped so that the markdown parser doesn't remove them. Thus, equations need to be written like:
\\[ \mu = \frac{1}{N} \sum_{i=0} x_i \\]
So when mathjax support is enabled in the configuration, it would be great to add a preprocessor that rewrites the \[ ... \]
forms to \\[ ... \\]
and add support for the $$ ... $$
math delimiters.