atom-tidy-markdown
atom-tidy-markdown copied to clipboard
Latex ("math mode") gets broken
When I write $\{\}$
, this gets corrected to ${}$
, while it should stay $\{\}$
. It would be nice to have a config option to disable tidying in Latex.
Same here. It brokes my math expressions, i.e.:
$$ MeanSquare(t) = vaha_1 * MeanSquare(t-1) + vaha_2 * Gradient(t) $$
to
$$ MeanSquare(t) = vaha_1 _ MeanSquare(t-1) + vaha_2 _ Gradient(t) $$
I have noticed the equations of the form $$ \begin{equation} a = b \end{equation} $$
becomes
$$ \begin{equation} a = b \end{equation} $$
which might be messy for longer equations, especially using \begin{align}, which also is messed up as the \ is converted to \
$$ \begin{align} a &= b \ b &= a^2 + c \end{align} $$
becomes
$$ \begin{align} a &= b \ b &= a^2 + c \end{align} $$
+1