{{howto_schema}}

How to Convert Your Obsidian Vault to Word Documents on Mac

Quick answer

You can convert Obsidian notes to Word documents using Pandoc plugin (for single files), PDF export (quick but lossy), or MarkDrop (for batch conversion) — each method trades off between technical setup, formatting quality, and batch processing speed.

Why Convert Obsidian Notes to Word Documents?

Obsidian is a powerful Markdown-based note-taking system, but the real world often demands Word documents. Academic institutions require .docx submissions. Clients can't open .md files. Collaborators use track changes in Word, not GitHub-style diffs.

The challenge isn't whether to convert — it's how to do it without destroying your carefully formatted notes, losing image embeds, or spending hours manually copying and pasting.

When You Need Word Format

Common scenarios where Obsidian → Word conversion becomes necessary:

What Gets Lost in Translation

Converting Markdown to Word isn't lossless. Here's what typically changes or breaks:

Understanding these limitations upfront helps you choose the right conversion method and prepare your notes accordingly.

Understanding Your Obsidian Vault Structure

Before converting anything, you need to understand how Obsidian organizes your files — because conversion tools interpret vault structure differently.

Vault File Organization

An Obsidian vault is just a folder containing:

Most conversion tools only see the .md files. They don't know about Obsidian's internal database of links and tags.

Links and Embeds to Consider

Obsidian supports several link formats that affect conversion:

Conversion tools handle these differently. Pandoc can convert wiki-links if configured. PDF export flattens everything to static images. MarkDrop preserves standard Markdown image syntax but strips wiki-links.

If your notes heavily use wiki-links for internal navigation, you'll need to decide whether to convert them to standard Markdown links first or accept they'll become plain text in Word.

Method 1: Using Pandoc Plugin (Best for Single Files)

Pandoc is the Swiss Army knife of document conversion. It's a command-line tool that converts between dozens of formats, including Markdown to Word. The Obsidian Pandoc plugin wraps this power in a (slightly) more user-friendly interface.

Installing Pandoc on macOS

Pandoc requires Homebrew, the macOS package manager. If you don't have Homebrew installed:

  1. Open Terminal (Applications → Utilities → Terminal)
  2. Paste this command and press Enter: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Follow the prompts (it takes 5-10 minutes)
  4. Once Homebrew is installed, run: brew install pandoc
  5. Verify installation with: pandoc --version

This is the steepest part of the learning curve. If you're not comfortable with Terminal, this method may not be worth it.

Setting Up the Obsidian Plugin

Once Pandoc is installed system-wide:

  1. In Obsidian, go to Settings → Community plugins
  2. Disable Safe mode if it's your first plugin
  3. Click Browse and search for "Pandoc Plugin"
  4. Install and enable the plugin
  5. Go to the plugin settings and set the Pandoc path (usually /opt/homebrew/bin/pandoc on Apple Silicon Macs, or /usr/local/bin/pandoc on Intel Macs)

Converting Your First File

To convert a note to Word:

  1. Open the note in Obsidian
  2. Open the command palette (Cmd+P)
  3. Type "Pandoc" and select "Pandoc Plugin: Export as Word Document (.docx)"
  4. Choose where to save the .docx file

The conversion takes ~2-5 seconds per file. Pandoc preserves headings, lists, code blocks, tables, and images (if paths are correct). It's the most accurate conversion method available.

Limitations of This Approach

Pros:

Cons:

For converting 5-10 files, this is manageable. For converting your entire 500-note vault? You'll spend an hour clicking through the command palette.

Method 2: PDF Export Then Convert (Quick but Lossy)

Obsidian has a built-in PDF export feature (Settings → Core plugins → PDF export). You can export any note to PDF, then use Preview or Adobe Acrobat to convert PDF → Word.

Step-by-Step PDF Conversion

  1. In Obsidian, open the note you want to convert
  2. Click the three-dot menu (⋮) in the top-right
  3. Select "Export to PDF"
  4. Save the PDF
  5. Open the PDF in Preview (or Adobe Acrobat)
  6. In Preview: File → Export as Word (this option may not appear on older macOS versions)
  7. In Adobe Acrobat: File → Export To → Microsoft Word → Word Document

This creates a .docx file, but the result is barely editable. PDF-to-Word conversion uses OCR-like text extraction. You'll get text blocks, but formatting is destroyed.

When This Method Makes Sense

Pros:

Cons:

This method only makes sense if you need a quick visual reference document, not an actual editable Word file. If someone just needs to see your notes in Word format without editing them, this works. For anything else, skip it.

Method 3: MarkDrop for Batch Conversion (Fastest for Multiple Files)

MarkDrop is a native Mac app that converts Markdown files to Word documents via Finder's right-click menu. It's designed specifically for the "I have 50 .md files and I need them all as .docx now" scenario.

Setting Up MarkDrop on Mac

  1. Download MarkDrop from mark-drop.app
  2. Open the .dmg and drag MarkDrop to your Applications folder
  3. Open MarkDrop once to grant it Finder extension permissions (System Settings → Privacy & Security → Extensions → Finder → Enable MarkDrop)
  4. That's it. No command-line setup, no Homebrew, no configuration files.

Converting Single Files

To convert one Obsidian note:

  1. In Finder, navigate to your vault folder
  2. Right-click any .md file
  3. Select "Convert to Word with MarkDrop"
  4. The .docx appears in the same folder ~2 seconds later

Free tier gives you 5 conversions per month. Pro ($9.99 one-time) unlocks unlimited conversions plus batch processing and Google Docs upload.

Batch Converting Your Entire Vault

To convert dozens or hundreds of notes at once:

  1. In Finder, select all the .md files you want to convert (Cmd+A selects all files in a folder)
  2. Right-click the selection
  3. Choose "Convert to Word with MarkDrop"
  4. All selected files convert in parallel

Tested on a 100-file vault: conversion takes ~15-20 seconds total. Compare this to Pandoc Plugin where you'd manually run the command 100 times.

What Formatting Gets Preserved

MarkDrop preserves:

What doesn't convert:

MarkDrop is optimized for clean Markdown that uses standard syntax. If you rely heavily on Obsidian plugins and custom formatting, expect some manual cleanup in Word.

Pros:

Cons:

Side-by-Side Comparison: Which Method Should You Choose?

Comparison Table

Method Setup Difficulty Batch Capable? Formatting Quality Cost Best For
Pandoc Plugin High (requires Homebrew + Terminal) No (one file at a time) Excellent (best available) Free Converting 1-10 files with complex formatting
PDF Export None No Poor (barely editable) Free Quick visual reference only
MarkDrop Low (drag-and-drop install) Yes (unlimited files) Very Good (standard Markdown) $9.99 for Pro Batch converting 10+ files, non-technical users, Mac users

Decision Framework

Choose Pandoc Plugin if:

Choose MarkDrop if:

Skip PDF export unless:

Time comparison for converting different vault sizes (tested on M1 MacBook Pro):

Vault Size Pandoc Plugin PDF Export MarkDrop
10 files ~3 minutes (manual clicks) ~10 minutes (export + convert) ~5 seconds
50 files ~15 minutes ~50 minutes ~12 seconds
100 files ~30 minutes ~100 minutes ~20 seconds

Best Practices for Converting Obsidian Vaults

Pre-Conversion Checklist

Before converting your vault, prepare your notes to minimize post-conversion cleanup:

Post-Conversion Tips

After conversion, expect some cleanup in Word:

Troubleshooting Common Conversion Issues

Broken image links: This happens when images use absolute paths (/Users/yourname/vault/attachments/img.png) instead of relative paths (attachments/img.png). Fix by:

Internal wiki-links not converting: Wiki-links ([[Note Name]]) are Obsidian-specific and don't translate to Word hyperlinks. Solutions:

Code blocks losing monospace formatting: If code blocks appear in regular font, manually select them in Word and apply Courier New or Consolas. Or set up a Pandoc template that maps code blocks to a custom Word style.

Tables with weird spacing/borders: Markdown tables use plain text alignment. Word tables need explicit border and spacing settings. After conversion, select the table, right-click → Table Properties → Borders and Shading to adjust.

Special characters displaying as & or <: HTML entities sometimes leak through in conversions. Find and replace:

File path problems on Mac: If files won't convert, check that file names don't contain special characters (:, /, ?). macOS allows these in Finder but they break paths in conversion tools. Rename files to use only letters, numbers, hyphens, and underscores.

Frequently Asked Questions

Can you export Obsidian to Word?

Yes, Obsidian notes can be exported to Word using Pandoc (via the Pandoc Plugin), PDF export followed by PDF-to-Word conversion, or batch conversion tools like MarkDrop. Obsidian doesn't have built-in Word export, but the Markdown files it creates are easily convertible using third-party tools.

Can a markdown file be converted to Word?

Yes, Markdown files (.md) can be converted to Word documents (.docx) using command-line tools like Pandoc, online converters, or Mac apps like MarkDrop. The conversion preserves headings, lists, tables, and basic formatting, though Obsidian-specific features like wiki-links don't translate.

Is Obsidian a good Word processor?

Obsidian is a note-taking and knowledge management app, not a word processor. It's excellent for writing in Markdown and linking ideas, but it lacks Word's formatting controls, track changes, and collaborative editing. Most users write in Obsidian then export to Word for final formatting and distribution.

Does Obsidian support Docx?

No, Obsidian only works with Markdown (.md) and plain text files. It cannot open or edit .docx files directly. To work with Word documents in Obsidian, you must first convert them to Markdown using tools like Pandoc or online converters.

Try MarkDrop free

5 free conversions per month. Right-click any .md file to get a formatted .docx.

Download MarkDrop