I'm creating PDFs from markdown files and would like to customize the output. Specifically, I'd like to change the title of the table of contents in the resulting PDF.
Currently, it's "Contents":
How can I change that title?
I'm calling Pandoc 2.7.2 on Arch Linux 5.1.2 like this:
pandoc --pdf-engine=xelatex --toc test.md -o doc.pdf
For completeness, this is test.md:
# First Heading
Some text
# Second Heading
More text
# Third Heading
Even more text

