packages feed

pandoc-3.10: test/command/10185.md

```
% pandoc -t latex --citeproc
Lorem ipsum

# References

::: {#refs}
:::
^D
Lorem ipsum

\section{References}\label{references}

\protect\phantomsection\label{refs}
```

```
% pandoc -t latex --citeproc
---
references:
- id: foo
  type: book
  title: The Title
  author: John Doe
...

Lorem ipsum [@foo].

# References

::: {#refs}
:::
^D
Lorem ipsum (John Doe, n.d.).

\section{References}\label{references}

\protect\phantomsection\label{refs}
\begin{CSLReferences}{1}{1}
\bibitem[\citeproctext]{ref-foo}
John Doe. n.d. \emph{The Title}.

\end{CSLReferences}

```