Guide

How to Export Notion Pages to PDF (the Clean Way)

July 6, 2026 · 5 min read

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:

  1. Open the page.
  2. Click the ••• (more) menu in the top-right.
  3. Choose Export.
  4. Set Export format to PDF.
  5. 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:

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.

  1. Open the page, click •••, and choose Export.
  2. Set Export format to Markdown & CSV.
  3. Notion downloads a .zip. Unzip it — your page is a .md file (databases come out as .csv, and images sit in a subfolder).
  4. Open the .md file, or copy its contents.
  5. 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

The whole flow, start to finish

  1. In Notion: ••• → Export → Markdown & CSV, unzip.
  2. Paste the .md into ConvertMDapp and eyeball the live preview.
  3. Add page breaks between sections if you merged subpages.
  4. 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.