Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 11 additions & 32 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@
]
},
"guides/deployments",
"pdf-exports",
"contact-support"
]
},
Expand Down Expand Up @@ -247,9 +248,7 @@
"groups": [
{
"group": "API Reference",
"pages": [
"api-reference/introduction"
]
"pages": ["api-reference/introduction"]
},
{
"group": "Admin",
Expand Down Expand Up @@ -280,9 +279,7 @@
"groups": [
{
"group": "Changelog",
"pages": [
"changelog"
]
"pages": ["changelog"]
}
]
}
Expand Down Expand Up @@ -523,9 +520,7 @@
"groups": [
{
"group": "Référence de l’API",
"pages": [
"fr/api-reference/introduction"
]
"pages": ["fr/api-reference/introduction"]
},
{
"group": "Admin",
Expand Down Expand Up @@ -556,9 +551,7 @@
"groups": [
{
"group": "Journal des modifications",
"pages": [
"fr/changelog"
]
"pages": ["fr/changelog"]
}
]
}
Expand Down Expand Up @@ -799,9 +792,7 @@
"groups": [
{
"group": "Referencia de la API",
"pages": [
"es/api-reference/introduction"
]
"pages": ["es/api-reference/introduction"]
},
{
"group": "Administrador",
Expand Down Expand Up @@ -832,9 +823,7 @@
"groups": [
{
"group": "Cambios",
"pages": [
"es/changelog"
]
"pages": ["es/changelog"]
}
]
}
Expand Down Expand Up @@ -1075,9 +1064,7 @@
"groups": [
{
"group": "API 参考",
"pages": [
"zh/api-reference/introduction"
]
"pages": ["zh/api-reference/introduction"]
},
{
"group": "管理员",
Expand Down Expand Up @@ -1108,9 +1095,7 @@
"groups": [
{
"group": "更新日志",
"pages": [
"zh/changelog"
]
"pages": ["zh/changelog"]
}
]
}
Expand Down Expand Up @@ -1223,13 +1208,7 @@
"background": "/images/thumbnail/background.svg"
},
"contextual": {
"options": [
"copy",
"chatgpt",
"claude",
"cursor",
"vscode"
]
"options": ["copy", "chatgpt", "claude", "cursor", "vscode"]
},
"redirects": [
{
Expand Down Expand Up @@ -1393,4 +1372,4 @@
"publicApiKey": "pk_76a6caa274e800f3ceff0b2bc6b9b9d82ab8"
}
}
}
}
Binary file added files/mint-full-docs.pdf
Binary file not shown.
14 changes: 14 additions & 0 deletions pdf-exports.mdx
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
---
title: "PDF exports"
icon: "file-down"
description: "Export your docs as a single PDF file"
---

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 [Custom plans](https://mintlify.com/pricing).
</Info>

You can export your docs as a single PDF file for offline viewing. The PDF will contain all the content in the docs, including images and links, and a navigable table of contents.

## Exporting a PDF

Check warning on line 22 in pdf-exports.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

pdf-exports.mdx#L22

'Exporting a PDF' should use sentence-style capitalization.

1. Navigate to the [General](https://dashboard.mintlify.com/settings/deployment/general) page in the Project Settings section of your dashboard.
2. Select the **Export all content** button.
Expand All @@ -20,3 +30,7 @@
4. Select **Export** to start the export process.
5. Once the export is complete, you will receive an email with a download link.
6. Click the download link to download the PDF file.


<DownloadPDFButton />

Loading