What Notion's export gets wrong
When you export a Notion workspace as Markdown, each page becomes a file named like Project Plan a1b2c3…d4e5.md — the trailing 32-hex string is the page's internal id. Pages with subpages also get a sibling folder of the same hashed name holding the children, and images live inside those folders. Notion then writes every internal link and image reference using those hashed, URL-encoded paths.
- Cluttered filenames — every file and folder ends in a long hash.
- Broken-looking links —
[Sub](Project%20Plan%20a1b2…/Child%20f6a7….md)instead of[Sub](Project Plan/Child.md). - Hard to browse — the hashes make the folder tree unreadable in any editor or static-site generator.