mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
672e745839
rather than adding an enclosing Div. Closes #11604.
23 lines
313 B
Markdown
23 lines
313 B
Markdown
```
|
|
% 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>
|
|
|
|
```
|