Guide
How to Export Notion Pages to PDF (the Clean Way)
Notion is a great place to write, but a shaky place to export from. Its built-in Export → PDF works for a single simple page, yet it trips over the things people actually need: exporting a page with subpages is gated behind a paid plan, wide tables and toggles render inconsistently, and the output often looks nothing like the page on screen.
There's a cleaner path that sidesteps all of it: export your Notion page as Markdown, then convert that Markdown to a polished PDF. This guide covers both routes and when to use each.
Option A — Notion's built-in PDF export
For a quick, single page this is the fastest option:
- Open the page.
- Click the ••• (more) menu in the top-right.
- Choose Export.
- Set Export format to PDF.
- Pick a page format (A4, Letter, or Legal) and scale, then Export.
That's fine for a plain page. But be aware of the limits:
- Subpages need a paid plan. The Include subpages and Create folders for subpages options require a Plus plan or higher. On the free plan you can only export the current page on its own.
- Layout drifts. Multi-column layouts, toggles, wide tables, and databases frequently reflow or clip in the PDF. What you see isn't always what you get.
- No control over page breaks. Long pages break wherever they land, sometimes slicing a heading off from its content.
Option B — Export as Markdown, then convert
If the built-in PDF looks wrong, or you're on the free plan and need clean output, export to Markdown instead. Markdown is a faithful capture of your page's structure, and converting it gives you full control over the final look.
- Open the page, click •••, and choose Export.
- Set Export format to Markdown & CSV.
- Notion downloads a
.zip. Unzip it — your page is a.mdfile (databases come out as.csv, and images sit in a subfolder). - Open the
.mdfile, or copy its contents. - Paste it into a browser converter like ConvertMDapp, check the live preview, and click Export PDF.
Because a client-side converter renders the Markdown fresh, you get real selectable text, clean page breaks that keep headings with their sections, and a consistent GitHub-style layout — no dependence on Notion's export engine. And since everything runs in your browser, your notes never leave your device, which matters for internal docs and anything confidential.
Tip: If your page is mostly a Notion database, the Markdown export splits the table into a CSV. To keep it as a table in your PDF, copy the database view as Markdown instead (select the rows, copy, and paste — Notion puts a Markdown table on your clipboard), then convert that.
Which route should you pick?
| Situation | Best route |
|---|---|
| One simple page, quick share | Built-in Export → PDF |
| Free plan, page has subpages | Export Markdown, merge, convert |
| Layout looks broken in Notion's PDF | Export Markdown, convert |
| You need selectable text / clean breaks | Export Markdown, convert |
| A page that's really a database | Copy view as Markdown table, convert |
Handling subpages without paying
The free-plan subpage limit is the most common complaint. The workaround: export each subpage as Markdown, then paste them one after another into the converter in the order you want, adding a divider between them. In the editor, put a horizontal rule (---) or a manual page break where each new section should start:
# Chapter One
...content...
<div style="page-break-before: always"></div>
# Chapter Two
...content...
That gives you a single, clean multi-section PDF — the thing Notion wanted you to upgrade for — from plain exported Markdown.
Fixing the usual export problems
- Wide tables get clipped. A good converter constrains content to the printable page width and lets rows break cleanly. More on this in Markdown tables to PDF.
- Images don't appear. Notion's Markdown export references images in a local subfolder. If you copied only the text, the images won't resolve — export the full
.zipand keep the image folder alongside, or use pages whose images are hosted URLs. - Toggles are collapsed. Notion exports toggle content as normal text under a heading, so it's usually fine — but check the Markdown to confirm nothing important was inside a nested block.
The whole flow, start to finish
- In Notion: ••• → Export → Markdown & CSV, unzip.
- Paste the
.mdinto ConvertMDapp and eyeball the live preview. - Add page breaks between sections if you merged subpages.
- Click Export PDF — done, with selectable text and no watermark.
New to converting Markdown in general? Start with the complete guide to converting Markdown to PDF. Keep your notes in more than one app? We also cover Obsidian and Typora.
FAQ
Can I export a Notion page to PDF for free? Yes — a single page exports to PDF free from the ••• menu. Exporting a page with its subpages to PDF requires a paid plan, but you can export everything as Markdown for free and convert it in a browser instead.
Why does my Notion PDF look different from the page? Notion's PDF export re-renders the page and often reflows multi-column layouts, toggles, and wide tables. Exporting to Markdown and converting gives you a cleaner, more predictable document with selectable text.
How do I export a Notion database to PDF? The Markdown export turns databases into CSV files. To keep a table in your PDF, open the database view, select and copy the rows (Notion copies them as a Markdown table), paste into a converter, and export.