Notion to PDF: Export Pages Without Watermarks (2026)
Notion is great for working documents but awkward for sharing finished ones. Anyone without a Notion account hits a sign-in wall on shared links, sub-pages don't follow you to the recipient, and the format isn't archivable. The solution is the same as for most tools: export to PDF. The catch is that Notion's built-in export covers the basics but third-party "Notion to PDF" tools either watermark the output, ask for OAuth access to your workspace, or upload your page to their servers. This guide walks through the cleanest paths.
Method 1: Notion's built-in export (cleanest for free tier)
- Open the Notion page you want to export.
- Click the ••• menu in the top-right corner.
- Choose Export.
- Set Format to PDF.
- Page size: A4 or US Letter. Include subpages: on if you want a multi-page bundle.
- Click Export.
The output has no watermark — Notion doesn't add one. If you're seeing a watermark, it's coming from a third-party converter you ran the page through, not Notion itself.
Method 2: Markdown export → in-browser PDF (best fidelity)
Notion's PDF export sometimes mangles complex pages: nested toggles, callouts with long text, large tables. The Markdown export is more reliable. Combined with a browser-based Markdown-to-PDF converter, you get cleaner output and full control over typography and page size.
- In Notion: ••• menu → Export → Format: Markdown & CSV → Export.
- You get a zip. Unzip it; the page becomes a
.mdfile (subpages become additional.mdfiles). - Open to-pdf.com/markdown-to-pdf.
- Drag the
.mdfile into the editor, or open it and copy-paste the contents. - Click Download PDF.
Conversion happens in your browser — the page contents never get uploaded to a server. No OAuth required, no workspace access granted to a third party.
Why people specifically search for "Notion to PDF without watermark"
Several free Notion-to-PDF browser extensions and converters add a footer like "Generated with FreeNotionPDF.com" or a small watermark in the corner of every page. They're free up to a limit, then upsell. If you've used one of those and want a clean PDF, both methods above produce watermark-free output.
Pages with images, tables, or callouts
Images
Notion's Markdown export references images by relative path inside the zip. The Markdown editor's preview won't load them automatically. Two fixes:
- Use Notion's PDF export (Method 1) instead — images are embedded.
- Replace each
reference with a base64 data URI by encoding the image. (Practical for a handful of images, tedious for many.)
Tables
Notion exports tables as Markdown pipe-tables. The Markdown editor renders them cleanly with proper borders and alternating row colors. No special handling needed.
Callouts and toggles
Markdown has no native callout/toggle syntax. Notion's export converts callouts to blockquotes and toggles to headings followed by indented content. Both render in the PDF; the visual styling is plainer than the Notion UI.
Method 3: Print page from a browser tab
For a quick one-off when the page renders cleanly:
- Open the Notion page in a browser (not the desktop app).
- Cmd/Ctrl + P.
- Choose Save as PDF as the destination.
This produces text-selectable output but often clips wide tables. For presentation-quality PDFs of long pages, Method 2 is more reliable.
What to do for an entire workspace
The built-in export supports "Include subpages" for multi-page exports. For a full-workspace dump (every page, every database, every comment), use Notion's Settings & Members → Settings → Export all workspace content. You'll get a zip of Markdown files which you can convert page-by-page, or concatenate into a single book.