How to Convert Obsidian Notes to Word

An Obsidian note is an ordinary Markdown file sitting in your vault folder, so converting one to Word means converting a Markdown file: open it in the Markdown to Word converter, or drag it from the vault onto the page, and download the .docx. Nothing is uploaded; the conversion runs in your browser.

The catch is that Obsidian adds its own syntax on top of Markdown. Wikilinks, embeds, callouts, highlights and front matter all mean something in Obsidian and nothing in Word. This guide explains what each becomes and what to tidy first.

Getting the note out of the vault

Two ways, both quick.

Open the file directly. Every note is a .md file in the vault folder. In the converter, use the file button or drop the file onto the editor. Obsidian’s Show in system explorer command, in the note’s menu, opens the folder for you.

Or copy the text. Select everything in the editor and copy. Obsidian copies the underlying Markdown rather than the rendered view, so pasting into the converter gives you the source, which is what you want.

What Obsidian syntax becomes in Word

Front matter. The block of properties between two --- lines at the top of a note is metadata for Obsidian, not part of the document. The converter leaves it out of the Word file and tells you it did so in the warnings. If you want the properties in the document, write them into the body as text before converting.

Wikilinks. A link written as [[Note name]] is Obsidian’s own syntax. In Word it appears exactly as typed, double brackets included, because there is no target for it outside the vault. For a document that will be read on its own, replace wikilinks with plain text, or with standard Markdown links to a web address if the target exists online. If you write many notes for export, Obsidian’s Files and links settings can create new links in standard Markdown form, and a community plugin can convert existing wikilinks in bulk; search the community plugins list for link conversion.

Embeds. An embedded image or note, written as ![[image.png]], is a wikilink with an exclamation mark, and it converts the same way: as text. Standard image syntax, ![alt](image.png), is treated as an image reference whose alt text is kept. Either way, the picture itself has to be inserted in Word afterwards, because the converter cannot read files from your disk. The guide to Markdown with images covers this.

Callouts. A callout such as > [!note] is a quote block with a type marker. It converts to a Word quote, and the marker stays as text on the first line. Delete the marker in Word or replace the callout with an ordinary quote before converting.

Highlights. Text wrapped in == is an Obsidian extension. The equals signs appear as typed. Use bold or italic instead if the emphasis matters.

Tags. A #tag is plain text as far as Markdown is concerned, and that is how it converts. Remove tags you do not want in the document.

Task lists. Checkbox items export as square brackets at the start of each line, since Word has no task list. Turn them into a bulleted list or leave the brackets.

Maths. Obsidian’s $...$ notation is LaTeX. The fast converter keeps it as text and warns you; best quality mode turns it into editable Word equations, which is what you want for a document with real mathematics. The LaTeX guide has the details.

Everything standard. Headings, lists, bold and italic, tables, code blocks, quotes and ordinary links all convert exactly as they would from any other Markdown file.

The Pandoc plugin alternative

Obsidian has a community plugin that exports notes through Pandoc, which must be installed separately. It handles wikilinks and embeds within the vault and can apply a Word template, at the price of installing and configuring Pandoc. If you export often and want a house style applied automatically, it is worth it. If you want one note in Word in the next minute, the browser route is quicker, and the Pandoc comparison guide explains where each approach wins.

A single note usually converts cleanly. A note that is really the index of a folder of linked notes is a different job: each linked note is a separate file, and Word has no notion of a vault. Decide what the document is first. If it is one note, convert that note. If it is a set of notes, merge them into one Markdown file in the order you want them read, fix the heading levels so the structure is consistent, and convert once.

Daily notes and journals

Converting a run of daily notes into one document is a common request, for a monthly review or a project log. The notes are separate files, so join them first: open them in date order, paste them into a single Markdown file with a heading for each date, and convert once. The front matter of each note is left out automatically, and the warnings will list it once per block.

Before sharing the result, search the merged file for tags and wikilinks, which carry more of your vault’s internal structure than the prose does, and remove the ones that would mean nothing to the reader. This is also the moment to check for anything private that a journal collects and a review document should not.

Common problems

Double brackets throughout the document. Wikilinks. Replace them with text or standard links, or use a link conversion plugin.

The properties block is missing. Front matter is left out on purpose, and the warning says so. Put anything you need into the body.

A word appears inside [!note]. A callout marker. Delete it or change the callout to a plain quote.

Images are not in the document. They never are, from any converter that does not read your disk. Insert them in Word.

Dollar signs around expressions. Maths in fast mode. Switch to best quality mode and convert again.

Frequently asked questions

Do I need to export the note first? No. The note already is a Markdown file. Open it in the converter or paste its text.

Is anything sent to a server? No. The conversion runs in the browser. That matters for a vault that holds private journals or client notes.

Will my folder structure or links between notes survive? No. A Word document is a single file with no vault behind it. Links to other notes become text.

Can I get the Word file back into Obsidian later? Yes. Convert it with the Word to Markdown converter and save the result into the vault. Wikilinks will not be recreated, but headings, lists and tables will.