mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-12 04:17:16 +00:00
672e745839
rather than adding an enclosing Div. Closes #11604.
313 B
313 B
% pandoc -f latex -t typst
\begin{table}
\caption{Caption}\label{tab}
\begin{tabular}{cc}
a & b \\ c & d
\end{tabular}
\end{table}
^D
#figure(
align(center)[#table(
columns: 2,
align: (center,center,),
[a], [b],
[c], [d],
)]
, caption: [Caption]
, kind: table
)
<tab>