Notion to Markdown migration

The last time Notion pushed a pricing change quietly through a footer link, plenty of long-time users started asking what a plain-Markdown-folder workflow would actually look like. The XDA piece on switching from Notion to a Syncthing-synced folder gave the honest answer, which is that once the export is done, the daily writing is faster and the clutter is gone. The trick is the export. Notion’s native ZIP dump is inconsistent, image URLs go stale, and toggles and databases lose most of their structure on the way out.

The best apps for Notion to Markdown migration on desktop handle both halves: they get the content out of Notion, and they land it in an editor that will actually keep it usable. We tested seven picks against a real workspace of about 900 pages with nested databases, embedded PDFs, and a few years of daily notes. Two are exporters, five are the editors you land the content in.

What to look for

A working migration path off Notion has four pieces:

Quick comparison

App Best for Platforms Free plan Starting price Rating
Obsidian Landing spot with the biggest ecosystem Windows, macOS, Linux Yes Free personal 4.8
Logseq Outliner-first daily notes Windows, macOS, Linux Yes Free 4.6
Yarle Notion and Evernote to Markdown exporter Windows, macOS, Linux Yes Free 4.4
Notion2Markdown Scripted API-based export Windows, macOS, Linux Yes Free 4.5
Silverbullet Self-hosted Markdown IDE Windows, macOS, Linux Yes Free 4.5
Craft Native Mac and Windows notes with import Windows, macOS Yes About 5 USD/mo 4.7
Standard Notes Encrypted long-term store Windows, macOS, Linux Yes About 5 USD/mo 4.5

1. Obsidian, best landing spot with the biggest ecosystem

Obsidian is where most Notion refugees end up. The Importer plugin ingests Notion’s ZIP export directly, converts callouts and toggles, and rewrites internal links to the new filenames. The 2026 Importer added database-to-folder conversion, so a Notion database of clients becomes a folder of client pages with the database properties preserved as YAML frontmatter.

Where it falls short: the Importer struggles with deeply nested toggle-inside-toggle blocks. Sync across devices requires either Obsidian’s paid service, Syncthing, iCloud, or a git remote.

Pricing:

Platforms: Windows, macOS, Linux, Android, iOS.

Download: obsidian.md or via package managers.

Bottom line: the default destination, and the app most Notion-to-Markdown guides in 2026 assume you are going to.

2. Logseq, best outliner-first daily notes

Logseq treats a knowledge base as an outliner: every page is bullet-first, blocks are addressable, and links between blocks work like Roam’s. For a Notion user who lived in daily-notes and databases, Logseq feels closer than Obsidian’s document model. The 2026 build finally shipped a stable Notion importer that reads the ZIP.

Where it falls short: blocks are stored inside a modified Markdown that is not always readable in a plain text editor. Whiteboards are a separate mode with its own quirks.

Pricing:

Platforms: Windows, macOS, Linux, Android, iOS.

Download: logseq.com or via GitHub

Bottom line: pick Logseq if your Notion use was 80% daily-notes and databases and only 20% documents.

3. Yarle, best Notion and Evernote to Markdown exporter

Yarle started as an Evernote-to-Markdown converter and grew a Notion mode when Notion exports proved too messy for direct import into Obsidian. It normalizes headings, unwraps toggles, converts callouts to Obsidian-style admonitions, and downloads S3 asset URLs into a local attachments folder so nothing goes stale later.

Where it falls short: it is a CLI with a modest GUI wrapper, and the Notion mode expects the ZIP as input, not a direct API pull.

Pricing:

Platforms: Windows, macOS, Linux.

Download: Yarle on GitHub

Bottom line: the extra normalization pass between Notion’s ZIP and the editor that finally holds your notes.

4. Notion2Markdown, best scripted API-based export

Notion2Markdown is a family of scripts (JavaScript and Python variants) that hit the Notion API directly instead of relying on the ZIP export. That gets you database views, formula results, and richer relation handling, and it can be scheduled to keep a local mirror in sync until you finish the migration.

Where it falls short: API access requires a Notion integration token, and rate limits slow big workspaces. Some blocks (audio, embed, complex database views) still degrade in the output.

Pricing:

Platforms: Windows, macOS, Linux.

Download: notion2md on GitHub

Bottom line: the pick when the ZIP export loses something you cannot afford to lose.

5. Silverbullet, best self-hosted Markdown IDE

Silverbullet is a self-hosted browser-based Markdown editor with a plugin architecture and a real command palette. Ideal when the migration destination is a folder you serve from a home NAS and access from any device via a browser. Its 2026 release added a Notion import plug.

Where it falls short: browser-only means offline needs the PWA plus service-worker cache, and mobile editing is functional but not native-feeling.

Pricing:

Platforms: Windows, macOS, Linux (as Docker or Deno app).

Download: silverbullet.md

Bottom line: the pick when the goal is one URL you point every device at and no vendor to trust.

6. Craft, best native Mac and Windows notes

Craft is the polished native alternative for people who want Notion’s document feel with a Markdown export path. Import from Notion’s HTML export is one click, the desktop app is native (not Electron), and every doc round-trips to Markdown.

Where it falls short: the free plan caps documents. Cloud sync is proprietary; a local-only workflow is not really the point.

Pricing:

Platforms: Windows, macOS, iOS.

Download: craft.do

Bottom line: for a Notion user who wants Notion’s polish and pays for it, minus the AI upsells.

7. Standard Notes, best encrypted long-term store

Standard Notes is the choice when the migration is about outliving whatever the next SaaS decision is. Notes are end-to-end encrypted, the format is plain (Markdown, plaintext, or rich text depending on editor plugin), and a long-term subscription buys 5-year forward-compatible sync guarantees.

Where it falls short: the free plan is deliberately minimal. Advanced editors (Markdown, spreadsheet, code) live behind the Productivity plan.

Pricing:

Platforms: Windows, macOS, Linux, iOS, Android, web.

Download: standardnotes.com

Bottom line: the destination when the whole reason for leaving Notion is data ownership rather than editor preference.

How to pick the right one

FAQ

What is the fastest way to export a Notion workspace to Markdown?

Export the workspace as Markdown & CSV from Notion’s UI (Settings, Workspace, Import & export). That ZIP is the input every tool in this list understands.

Does Obsidian’s Notion importer preserve databases?

The 2026 Importer maps each database row to a Markdown file inside a folder that shares the database name, with properties in YAML frontmatter. Views and formulas do not carry over.

Yes. Notion serves images from an S3 bucket with expiring URLs tied to your account. Any tool in this list that downloads images locally (Yarle, Notion2Markdown, Obsidian Importer) fixes that.

Can I keep using Notion for some things and Markdown for others?

Yes. Some people keep Notion for shared team docs and move personal notes to Obsidian. Run Notion2Markdown on a schedule to keep a local mirror of the shared workspace.

Is Syncthing enough to keep my Markdown notes in sync?

For folders under a few gigabytes and two or three devices, yes. Enable file versioning so an accidental delete does not propagate before you notice.

What breaks when I move a Notion database to Markdown?

Formulas, rollups, and cross-database relations do not translate. Property columns become YAML frontmatter fields. Simple databases (client lists, reading lists, task lists) survive cleanly; complex ones need per-database attention.