Hi @cdaven , your plugin is great! Thank you!
I notice some strange substitutions with katex, i export this code to markdown:
<$latex text="
\begin{aligned}
&h > 2 \times C \rightarrow \text{Sapata muito rígida ou bloco}\\
\frac{2}{3} \times C \le &h \le 2 \times C \rightarrow \text{Sapata rígida}\\
\frac{C}{2} \le &h < \frac{2}{3} \times C \rightarrow \text{Sapata semi-rígida}\\
&h < \frac{C}{2} \rightarrow \text{Sapata flexível}
\end{aligned}">
</$latex>
And get this result:
$
\begin{aligned}
&h > 2 \times C \rightarrow \text{Sapata muito rígida ou bloco}\\
\frac{2}{3} \times C \le &h \le 2 \times C \rightarrow \text{Sapata rígida}\\
\frac{C}{2} \le &h < \frac{2}{3} \times C \rightarrow \text{Sapata semi-rígida}\\
&h < \frac{C}{2} \rightarrow \text{Sapata flexível}
\end{aligned}$
I notice the symbols < or > are substituted by < and <, i can change this using the correct code in latex \lt or \gt, but the symbol & is needed to align the equation, so maybe the & symbol don’t need to be substituted or parsed (i dont know what i talking about )
Second, i think the <$latex text="
needed to be show as:
$$
\begin{aligned}
&h \gt 2 \times C \rightarrow \text{Sapata muito rígida ou bloco}\\
\frac{2}{3} \times C \le &h \le 2 \times C \rightarrow \text{Sapata rígida}\\
\frac{C}{2} \le &h \lt \frac{2}{3} \times C \rightarrow \text{Sapata semi-rígida}\\
&h \lt \frac{C}{2} \rightarrow \text{Sapata flexível}
\end{aligned}
$$