Tutorial·7 min read

How to Export Notion Pages to Word Without Broken Formatting

Notion has no direct Word export. The reliable path is Markdown: export your page as .md, fix the two things Notion mangles, and convert to a clean .docx. Here's the full walkthrough.

Notion is where the work happens — but sooner or later someone asks for "the Word version": a client who reviews in tracked changes, a professor who only accepts .docx, a legal team with a template. And Notion has no native Word export. Your options in the export menu are PDF, HTML, and Markdown.

PDF can't be edited. HTML pastes into Word badly. That leaves Markdown — which turns out to be the clean path, because Notion pages are structured like Markdown underneath.

Step 1: Export the page as Markdown

  1. Open the page in Notion.
  2. Click the ••• menu (top right) → Export.
  3. Set Export format to Markdown & CSV.
  4. If the page has sub-pages, choose whether to include them — each becomes its own .md file.
  5. Notion downloads a .zip containing the .md file plus a folder of any images.

Step 2: Know what Notion's export mangles

Notion's Markdown export is good but not perfect. Before converting, it helps to know the five common trouble spots:

  1. Databases export as CSV, not tables. An inline database (table view) becomes a separate .csv file, not a Markdown table. If you need it in the Word doc, ask ChatGPT or any CSV-to-Markdown tool to convert the CSV into a Markdown table and paste it into the document where the database was.
  2. Callouts become blockquotes. Notion's colored callout boxes turn into plain > blockquotes with an emoji. Usually fine — style them in Word afterward if they matter.
  3. Toggles flatten. Toggle blocks export as a heading or list item with the hidden content directly below — nothing collapses in Word, so review whether the order still reads correctly.
  4. Images are relative links. The .md references images in the exported folder (![](Page%20Name/image.png)). Online converters generally can't follow local file paths — see step 4.
  5. Equations survive. Notion's math blocks export as proper LaTeX ($$...$$), which is great if your converter supports math.

Step 3: Convert the Markdown to Word

  1. Unzip the export and open the .md file in any text editor (or drag it straight into the converter).
  2. Paste the content into the free Markdown to Word converter — or use the file-upload button and select the .md directly.
  3. Check the live preview: headings, lists, quotes, code blocks, and math formulas should all render.
  4. Choose a theme/font and click Convert to Word.

Math blocks from Notion render into the .docx properly here — that's one of the features most generic converters skip.

Step 4: Reattach the images

Because the browser can't read files from your disk by relative path, images need one of these routes:

  • Few images: convert the text first, then drag the images from the export folder into the Word document at the right spots. Two minutes for a typical page.
  • Many images: upload the images somewhere public (or your company CDN), replace the relative paths in the .md with the https URLs, and convert again — they'll be embedded automatically.
  • Word-side linking: Insert → Pictures in Word from the export folder keeps original resolution.

A worked example

A typical Notion project brief with an H1, a few H2 sections, a bulleted requirements list, a code block, one callout warning, and a math estimate converts like this:

  • H1/H2 → real Word heading styles (navigation pane works, TOC generation works)
  • Bullets and checkboxes → Word lists (checkboxes become ☐ / ☑ characters)
  • Code block → monospaced, syntax-highlighted block
  • Callout → indented quote block
  • $$T = n \times 1.5h$$ → a rendered formula, not raw LaTeX

The result is an editable, styled document — not a screenshot-looking import.

Frequently asked questions

Can I export a whole Notion workspace to Word at once? You can export the workspace as Markdown in bulk (Settings → Export all workspace content), but you'll get many .md files. Convert the ones you actually need — a full-workspace .docx dump is rarely useful.

Do Notion comments and mentions come through? No. Comments, people mentions, and page links export as plain text or are dropped. Resolve anything important into the document body before exporting.

Why not just copy-paste from Notion into Word? Direct pasting produces inconsistent results — some blocks arrive as images, tables often lose structure, and code blocks flatten. The Markdown route is deterministic: what's in the file is what converts.

Convert your Markdown to Word now

Tables, Mermaid diagrams, and LaTeX math — all preserved. Free, no sign-up, runs in your browser.

Open the converter