Files
pandoc/test/command/11604.md
T
John MacFarlane 672e745839 LaTeX reader: put identifier from label on table attributes...
rather than adding an enclosing Div.

Closes #11604.
2026-05-01 00:15:40 +02:00

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>
```