<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: matt well</title>
    <description>The latest articles on DEV Community by matt well (@matt_well_da9fccb7f26faa8).</description>
    <link>https://dev.to/matt_well_da9fccb7f26faa8</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4038364%2F306910c2-f718-4e7e-ac0b-30a035dc2bf0.png</url>
      <title>DEV Community: matt well</title>
      <link>https://dev.to/matt_well_da9fccb7f26faa8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matt_well_da9fccb7f26faa8"/>
    <language>en</language>
    <item>
      <title>What to Check Before Moving a Notion Export into Obsidian</title>
      <dc:creator>matt well</dc:creator>
      <pubDate>Wed, 05 Aug 2026 08:30:18 +0000</pubDate>
      <link>https://dev.to/matt_well_da9fccb7f26faa8/what-to-check-before-moving-a-notion-export-into-obsidian-5cn6</link>
      <guid>https://dev.to/matt_well_da9fccb7f26faa8/what-to-check-before-moving-a-notion-export-into-obsidian-5cn6</guid>
      <description>&lt;p&gt;Moving notes from Notion to Obsidian looks simple: export a ZIP, unpack it, and copy the folder into a vault.&lt;/p&gt;

&lt;p&gt;The part that usually causes trouble happens before the import. A Notion export can contain temporary image references, HTML-based callouts, long filenames, CSV databases, and Markdown that is technically valid but awkward to use in a local vault.&lt;/p&gt;

&lt;p&gt;Here is a practical checklist for checking the export before you build links and folders around it.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Keep the original ZIP
&lt;/h2&gt;

&lt;p&gt;Do not unpack the only copy and start editing files in place. Keep the original Notion ZIP untouched, then create a separate working copy for cleanup.&lt;/p&gt;

&lt;p&gt;This gives you a reference when a page looks different after repair. It also makes it easier to separate a conversion problem from an Obsidian configuration problem.&lt;/p&gt;

&lt;p&gt;Keep both copies until you have reviewed the imported vault:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the original Notion export;&lt;/li&gt;
&lt;li&gt;the repaired or cleaned export;&lt;/li&gt;
&lt;li&gt;the final Obsidian vault copy.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2. Inspect one note and its assets
&lt;/h2&gt;

&lt;p&gt;Open one or two representative Markdown files in a plain text editor. Then inspect the folders next to them.&lt;/p&gt;

&lt;p&gt;Look for these common problems:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;image links pointing to a separate asset folder;&lt;/li&gt;
&lt;li&gt;image filenames that no longer match the links;&lt;/li&gt;
&lt;li&gt;page and asset names with long UUID suffixes;&lt;/li&gt;
&lt;li&gt;callouts or toggles exported as raw HTML;&lt;/li&gt;
&lt;li&gt;code fences without a language label;&lt;/li&gt;
&lt;li&gt;blank lines or indentation that make lists render incorrectly.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Do not assume every file has the same problem. Choose one note with images, one note with callouts or tables, and one code-heavy note if your workspace contains them.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Treat images as a separate migration check
&lt;/h2&gt;

&lt;p&gt;Markdown text can look correct while every image is broken. Check an image-bearing note before importing the whole workspace.&lt;/p&gt;

&lt;p&gt;The useful questions are:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Does the image file exist in the exported folder?&lt;/li&gt;
&lt;li&gt;Does the Markdown link point to the actual relative path?&lt;/li&gt;
&lt;li&gt;Does the filename contain characters that are difficult to handle on your target system?&lt;/li&gt;
&lt;li&gt;Is the original export still available if an image was not included at all?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If the source export does not contain the image data, a Markdown converter cannot recreate it. Keep a list of missing assets instead of silently accepting a broken vault.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Repair the repetitive problems before importing
&lt;/h2&gt;

&lt;p&gt;Some cleanup is mechanical and safe to automate. Typical examples include normalizing image references, simplifying UUID-heavy filenames, reducing excessive blank lines, and adding missing language labels to code blocks.&lt;/p&gt;

&lt;p&gt;Other changes require your judgment. Complex tables, embedded content, permissions, comments, page history, automations, and database views do not have a perfect Markdown equivalent.&lt;/p&gt;

&lt;p&gt;For a browser-based cleanup pass, &lt;a href="https://litenoter.com/tools/notion-export-fixer/?utm_source=devto&amp;amp;utm_medium=referral&amp;amp;utm_campaign=notion_obsidian_pilot" rel="noopener noreferrer"&gt;Notion Export Fixer&lt;/a&gt; accepts a Notion export and produces a repaired ZIP locally in the browser. Review the report and keep the original ZIP before downloading the result.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Review a small sample after repair
&lt;/h2&gt;

&lt;p&gt;Before moving the entire export into your vault, compare a few important notes with their originals.&lt;/p&gt;

&lt;p&gt;Check:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;headings and nested lists;&lt;/li&gt;
&lt;li&gt;images and relative links;&lt;/li&gt;
&lt;li&gt;callouts, toggles, and tables;&lt;/li&gt;
&lt;li&gt;code blocks;&lt;/li&gt;
&lt;li&gt;filenames and folder paths;&lt;/li&gt;
&lt;li&gt;links between related notes.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;File counts are not enough. A migration can contain the expected number of files and still have broken image paths or unreadable blocks.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Import into Obsidian last
&lt;/h2&gt;

&lt;p&gt;Create a temporary vault or copy the repaired folder into a test location first. Open several notes and let Obsidian finish indexing before reorganizing anything.&lt;/p&gt;

&lt;p&gt;Only after the sample looks correct should you:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;move the reviewed folder into the main vault;&lt;/li&gt;
&lt;li&gt;rename notes or folders;&lt;/li&gt;
&lt;li&gt;add Obsidian-specific links and tags;&lt;/li&gt;
&lt;li&gt;archive the original and repaired ZIPs outside the vault.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This order keeps the migration reversible. It also prevents you from building a large set of links on top of files that still need repair.&lt;/p&gt;

&lt;h2&gt;
  
  
  What a Notion export will not preserve perfectly
&lt;/h2&gt;

&lt;p&gt;Notion and Obsidian use different document models. A Markdown export can preserve readable text and many basic structures, but it will not reproduce every interactive feature.&lt;/p&gt;

&lt;p&gt;Expect separate handling for database CSV files, complex nested table cells, third-party embeds, permissions, comments, page history, and database views. The goal is a usable and portable Markdown archive, not a pixel-perfect clone of the Notion workspace.&lt;/p&gt;

</description>
      <category>productivity</category>
    </item>
  </channel>
</rss>
