Files
mintlify[bot] f14cca3b52 Standardize style and tone across docs (#5652)
* Standardize style: 'Click' to 'Select' for Mintlify UI; split long sentences

Generated-By: mintlify-agent

* Revert 'select' back to 'click' for UI interactions

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* Fix select→click for UI elements across docs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-08 15:34:08 -07:00

39 lines
1.6 KiB
Plaintext

---
title: "PDF exports"
description: "Export your entire documentation site as a single PDF with a navigable table of contents for offline reading, sharing, and print distribution."
keywords: ["PDF", "offline docs"]
---
export const DownloadPDFButton = () => {
return (
<a download="mintlify-example.pdf" href="/files/mint-full-docs.pdf" className="border border-zinc-200 dark:border-zinc-800 hover:bg-zinc-100 dark:hover:bg-zinc-700 transition-colors w-fit text-sm font-medium flex items-center gap-2 rounded-lg px-3.5 py-1.5 not-prose">
<Icon icon="download" size={16} />
View Example PDF
</a>
)
}
<Info>
PDF exports are available on [Enterprise plans](https://mintlify.com/pricing).
</Info>
You can export your docs as a single PDF file for offline viewing. The PDF contains all the content in the docs, including images and links, and a navigable table of contents.
PDF exports are not supported for documentation sites that use authentication.
## Export a PDF
1. Navigate to the [General](https://dashboard.mintlify.com/settings/deployment/general) page in the Project Settings section of your dashboard.
2. Click the **Export all content** button.
3. Optionally, customize the export options:
- **Page format**: Choose the page size of the PDF.
- **Scale percentage**: Adjust the scale of the PDF.
- **Include footer**: Include a footer with the page number and total pages.
4. Click **Export** to start the export process.
5. Once the export is complete, you receive an email with a download link.
6. Click the download link to download the PDF file.
<DownloadPDFButton />