Export Options

Access & Export Settings

ZIP Export (Default)

By default, exporting produces a ZIP archive that mirrors your Confluence page hierarchy as a folder structure.

File Structure

my-space-export-2026-04-08.zip
├── Parent Page.md
├── Parent Page/
│   ├── Child Page One.md
│   ├── Child Page Two.md
│   └── Nested Section/
│       └── Deep Page.md
└── attachments/
    ├── Child Page One/
    │   └── screenshot.png
    └── Deep Page/
        └── diagram.pdf

Each .md file's name is determined by your Filename Pattern setting. Attachment files are placed in a per-page subfolder under attachments/.

Links between pages in the export are converted to relative paths — for example:

See [Child Page One](./Parent%20Page/child-page-one.md) for details.

This means the exported ZIP is self-contained and links work correctly when rendered locally or published as a static site.

Single File Export

Enable Export as single file in the configuration panel to merge all selected pages into a single .md file.

my-space-export-2026-04-08.md

Pages are separated by --- dividers, with each page beginning with its title as a top-level heading:

---
title: "Parent Page"
...
---

# Parent Page

...content...

---

---
title: "Child Page One"
...
---

# Child Page One

...content...

---

Note: Attachments are not included in single-file exports.

Single-file mode is ideal for:

  • Feeding content into AI tools or LLMs
  • Creating a single searchable document
  • Simple backups where folder structure isn't needed

Include Attachments

When Include attachments is checked (ZIP mode only), all files attached to each exported page are downloaded and included in the ZIP under the attachments/ folder.

Each attachment is referenced in the markdown with a relative path:

![Diagram](./attachments/My%20Page/diagram.png)

Attachment downloading happens in small parallel batches with rate limiting to avoid hitting Confluence API limits.

Export Progress

While the export is running, a progress bar shows:

  • Number of pages processed vs total
  • The name of the page currently being processed
  • Current phase (Processing pages → Creating ZIP → Downloading)

Once complete, the file downloads automatically and the progress panel shows a Download again button if you need it.