packages feed

pandoc-3.10: test/command/11604.md

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

```