How to Export Obsidian Notes to Word on Mac (4 Methods)

Quick answer

Navigate to your Obsidian vault folder in Finder, right-click any .md file, and use MarkDrop to convert it to .docx. Standard Markdown formatting is preserved — but Obsidian-specific syntax like wikilinks and callouts won't transfer to Word in any tool.

Where Obsidian stores your notes

Obsidian isn't a proprietary format. Every note in your vault is a plain .md file stored in a regular folder on your Mac. You can find your vault location in Obsidian's settings under "About" or by right-clicking any note and choosing "Reveal in Finder."

Because Obsidian notes are standard files, any Markdown-to-Word converter can process them. The challenge is that Obsidian extends Markdown with its own syntax, and that extended syntax doesn't have equivalents in Word.

What converts and what doesn't

Before choosing a method, understand what will and won't survive the conversion:

Converts normally

Does not convert

No converter handles all Obsidian-specific features because Word simply doesn't have equivalents for them. Focus on getting the standard Markdown content across cleanly.

Method 1: Pandoc from Terminal

Pandoc converts Obsidian's .md files to .docx from the command line. It handles all standard Markdown correctly and ignores or strips Obsidian-specific syntax.

pandoc "/path/to/vault/My Note.md" -o "My Note.docx"

To strip YAML frontmatter, which Obsidian uses for metadata, add the --strip-comments flag or use a Lua filter. For most notes, Pandoc handles frontmatter gracefully by default.

Tradeoffs

Method 2: Obsidian Pandoc plugin

The community plugin "Pandoc Plugin" adds an export option directly inside Obsidian. You open a note, run the export command, and get a .docx file. This requires Pandoc installed on your system.

  1. Install Pandoc via Homebrew: brew install pandoc
  2. In Obsidian, go to Settings → Community plugins → Browse
  3. Search for "Pandoc Plugin" and install it
  4. Open any note, open the command palette (Cmd+P), and run "Pandoc Plugin: Export as Word Document"

Tradeoffs

Method 3: Online converters

Upload your .md file to a web-based converter like CloudConvert or Dillinger. No installation required.

Tradeoffs

Method 4: MarkDrop

Navigate to your vault folder in Finder, right-click any .md file, and choose "Convert with MarkDrop." The .docx file appears in the same folder. No terminal, no plugins, no uploads.

  1. Open Finder and navigate to your Obsidian vault folder
  2. Right-click any .md note
  3. Select "Convert with MarkDrop" from the Services menu
  4. The .docx appears alongside the original file

You can also select multiple notes and convert them all at once.

Tradeoffs

Which method should you use?

Method Setup Works from Privacy
Pandoc Homebrew + CLI Terminal Local
Obsidian plugin Pandoc + plugin Obsidian Local
Online tools None Browser Cloud
MarkDrop Install app Finder Local

For power users already in Terminal, Pandoc works well. If you want to stay inside Obsidian, the plugin is convenient. For the fastest workflow from Finder, MarkDrop is the simplest path. Avoid online converters if your notes contain anything private.

Try MarkDrop free

Convert Obsidian notes to Word from Finder. 5 free conversions per month.

Download MarkDrop

Frequently asked questions

Can I export Obsidian notes to Word?

Yes. Obsidian stores notes as .md files on your Mac. You can convert them to Word using Pandoc, an Obsidian community plugin, an online converter, or a native Mac app like MarkDrop.

Do Obsidian wikilinks work in Word?

No. Obsidian's [[wikilinks]] syntax is not standard Markdown and won't convert to clickable links in Word. Most converters will either strip them or show the raw bracket syntax.

What Obsidian formatting breaks when exporting to Word?

Obsidian-specific features like wikilinks, callout blocks, Dataview queries, and embedded note transclusions will not convert properly to Word. Standard Markdown elements like headings, lists, tables, and code blocks convert normally.