You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected the latex writer to turn the file test.md
:::::::::::::: {.columns}
::: {.column width="50%"}
left
:::
::: {.column width="50%"}
right
:::
::::::::::::::
into
\begin{document}
\maketitle
\begin{minipage}[t]{0.5\textwidth}
left
\end{minipage}
\begin{minipage}[t]{0.5\textwidth}
right
\end{minipage}
\end{document}
instead of
\begin{document}
\maketitle
left
right
\end{document}
I expected the latex writer to turn the file
test.md
into
instead of
pandoc 2.7.3
pandoc -s test.md --metadata title="test" -o test.tex
The text was updated successfully, but these errors were encountered: