<?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: Arthur</title>
    <description>The latest articles on DEV Community by Arthur (@crackx17).</description>
    <link>https://dev.to/crackx17</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3829968%2F61688a4e-35be-4db0-b1cd-28ddc14a1f6f.png</url>
      <title>DEV Community: Arthur</title>
      <link>https://dev.to/crackx17</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/crackx17"/>
    <language>en</language>
    <item>
      <title>How to Preview Markdown Files Directly in macOS Finder</title>
      <dc:creator>Arthur</dc:creator>
      <pubDate>Tue, 17 Mar 2026 20:39:44 +0000</pubDate>
      <link>https://dev.to/crackx17/how-to-preview-markdown-files-directly-in-macos-finder-190e</link>
      <guid>https://dev.to/crackx17/how-to-preview-markdown-files-directly-in-macos-finder-190e</guid>
      <description>&lt;p&gt;You know that thing where you press Space on a file in Finder and get an instant preview?&lt;/p&gt;

&lt;p&gt;It works for images. PDFs. Videos. Even 3D models.&lt;/p&gt;

&lt;p&gt;But try it on a &lt;code&gt;.md&lt;/code&gt; file. Nothing useful. Just raw text in a monospace font.&lt;/p&gt;

&lt;p&gt;Here's how to fix that — and turn your Finder into a proper Markdown previewer.&lt;/p&gt;

&lt;h2&gt;
  
  
  What QuickLook actually is
&lt;/h2&gt;

&lt;p&gt;For those unfamiliar: QuickLook is a macOS feature that renders a file preview when you press the spacebar in Finder. No app launches. No window management. Just instant preview.&lt;/p&gt;

&lt;p&gt;Developers use it constantly without thinking about it. You select a &lt;code&gt;.png&lt;/code&gt; and press Space to check the right asset. You select a &lt;code&gt;.pdf&lt;/code&gt; to skim a doc without opening Preview. It's muscle memory.&lt;/p&gt;

&lt;p&gt;The problem is that macOS ships with no QuickLook support for Markdown. Press Space on &lt;code&gt;README.md&lt;/code&gt; and you get the same experience as opening it in TextEdit — raw syntax, no rendering.&lt;/p&gt;

&lt;p&gt;Which is wild, because Markdown is arguably the most common documentation format in software development.&lt;/p&gt;

&lt;h2&gt;
  
  
  The setup (takes 2 minutes)
&lt;/h2&gt;

&lt;p&gt;You need a QuickLook extension that understands Markdown. There are a few options:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QLMarkdown&lt;/strong&gt; — Free, open-source, available on GitHub. Solid for basic Markdown rendering. No Mermaid support.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MacMD Viewer&lt;/strong&gt; — $19.99 on &lt;a href="https://macmdviewer.com/from/devto" rel="noopener noreferrer"&gt;https://macmdviewer.com/from/devto&lt;/a&gt;. Full viewer app that includes a QuickLook extension. Handles Mermaid diagrams, syntax highlighting, and dark mode in the preview. This is what we built and what I'll demo below.&lt;/p&gt;

&lt;p&gt;Install either one. No config needed. macOS picks up the extension automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  The workflow that changes everything
&lt;/h2&gt;

&lt;p&gt;Once installed, here's what your daily workflow looks like:&lt;/p&gt;

&lt;h3&gt;
  
  
  Triaging repos
&lt;/h3&gt;

&lt;p&gt;You clone a repo. Before opening anything in your editor:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;~/projects/new-repo/
├── README.md          ← select, press Space
├── CONTRIBUTING.md    ← arrow down, preview updates
├── docs/
│   ├── setup.md       ← arrow down again
│   └── api.md         ← you've scanned 4 docs in 10 seconds
├── src/
└── package.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You just read four documentation files without launching a single app. Arrow keys move between files. The preview updates in real-time.&lt;/p&gt;

&lt;p&gt;Compare that to: open VS Code → wait 3 seconds → navigate to file → Cmd+Shift+V for preview → repeat for each file. For reading documentation, QuickLook is 10x faster.&lt;/p&gt;

&lt;h3&gt;
  
  
  Reviewing PRs locally
&lt;/h3&gt;

&lt;p&gt;Someone sends you a branch with updated docs. You check it out, navigate to the changed &lt;code&gt;.md&lt;/code&gt; files in Finder, press Space. Instantly see how the rendered output looks. No need to push to GitHub just to preview the formatting.&lt;/p&gt;

&lt;h3&gt;
  
  
  Checking Mermaid diagrams
&lt;/h3&gt;

&lt;p&gt;This is where it gets interesting. If your QuickLook extension supports Mermaid, you can preview architecture diagrams without leaving Finder.&lt;/p&gt;

&lt;p&gt;Imagine your doc contains a flowchart: Client → API Gateway → Auth Service → Database. In raw Markdown, that's just text. With the right QuickLook extension, press Space and you see the actual rendered diagram — boxes, arrows, layout.&lt;/p&gt;

&lt;p&gt;No browser, no Mermaid Live Editor, no copy-pasting syntax into a web tool.&lt;/p&gt;

&lt;p&gt;For teams that document architecture in Markdown (and in 2026, most teams do), this is a massive time saver.&lt;/p&gt;

&lt;h3&gt;
  
  
  Live editing preview
&lt;/h3&gt;

&lt;p&gt;If your QuickLook extension supports live reload (MacMD Viewer does), you can keep the preview open while editing the file in your favorite editor. Every save updates the preview instantly.&lt;/p&gt;

&lt;p&gt;Split your screen: editor on the left, Finder QuickLook preview on the right. Poor man's live preview that works with any text editor — Vim, Neovim, Sublime, whatever.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pro tips
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Set your default app.&lt;/strong&gt; Right-click any &lt;code&gt;.md&lt;/code&gt; file → Get Info → Open With → choose your Markdown viewer → "Change All." Now double-clicking opens the rendered view, not TextEdit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Spotlight works too.&lt;/strong&gt; Open Spotlight (Cmd+Space), type a filename, arrow down to the &lt;code&gt;.md&lt;/code&gt; file. The preview panel on the right renders it. You just searched and previewed a Markdown file without touching Finder.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open/Save dialogs.&lt;/strong&gt; Any time macOS shows a file picker (Cmd+O in any app), you can press Space to QuickLook preview files. Works with the Markdown extension installed. Handy when you're looking for the right doc in a cluttered project.&lt;/p&gt;

&lt;h2&gt;
  
  
  The before and after
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;See &lt;code&gt;.md&lt;/code&gt; file in Finder&lt;/li&gt;
&lt;li&gt;Double-click → TextEdit opens → raw text&lt;/li&gt;
&lt;li&gt;Close TextEdit&lt;/li&gt;
&lt;li&gt;Open VS Code&lt;/li&gt;
&lt;li&gt;Wait for it to load&lt;/li&gt;
&lt;li&gt;Open file, switch to preview&lt;/li&gt;
&lt;li&gt;Read the doc&lt;/li&gt;
&lt;li&gt;Close VS Code&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;After:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;See &lt;code&gt;.md&lt;/code&gt; file in Finder&lt;/li&gt;
&lt;li&gt;Press Space&lt;/li&gt;
&lt;li&gt;Read the doc&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Eight steps down to two. That's not an optimization. That's a different workflow entirely.&lt;/p&gt;

&lt;h2&gt;
  
  
  The bigger picture
&lt;/h2&gt;

&lt;p&gt;Markdown isn't going away. If anything, AI tools are generating more of it than ever. Every Cursor session, every Copilot suggestion, every v0 scaffold comes with &lt;code&gt;.md&lt;/code&gt; files.&lt;/p&gt;

&lt;p&gt;Your operating system should be able to read them natively. macOS can't — yet. But with the right QuickLook extension, it takes two minutes to fix what Apple hasn't fixed in 25 years of macOS development.&lt;/p&gt;

&lt;p&gt;Try it. Select a &lt;code&gt;.md&lt;/code&gt; file. Press Space. You'll wonder how you ever lived without it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I've been using &lt;a href="https://macmdviewer.com/from/devto" rel="noopener noreferrer"&gt;MacMD Viewer&lt;/a&gt; for this — it's a native macOS app with a QuickLook extension that handles Mermaid and syntax highlighting. $19.99 once. &lt;a href="https://github.com/sbarex/QLMarkdown" rel="noopener noreferrer"&gt;QLMarkdown&lt;/a&gt; is a solid free alternative if you just need basic rendering. Either way, get QuickLook working for Markdown. Your future self will thank you.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>markdown</category>
      <category>macos</category>
      <category>productivity</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
