JDMCreator / LaTeXTableEditor

readme
MIT License
141 stars 14 forks source link

LaTeX table import fails on commented `%\begin{tabular}` #90

Closed gcr closed 7 months ago

gcr commented 10 months ago

The editor fails to import LaTeX that contains a commented \begin command.

Minimal example:

\begin{tabular}[ht]
%\begin{tabular}[ht]
a & b & c \\
d & e & f \\
g & g & i
\end{tabular}

The following works:

\begin{tabular}[ht]
a & b & c \\
d & e & f \\
g & g & i
\end{tabular}

Thanks for the great product!

JDMCreator commented 7 months ago

Confirmed that there's issue with commenting a tabular/table environment. However, your LaTeX is invalid and won't be loaded by the editor.

JDMCreator commented 7 months ago

Duplicate of #87