Convert a Microsoft Word document to markdown

Photo by Paolo Syiaco on Unsplash

How to convert a Microsoft Word document like .doc or .docx to markdown.

# first install pandoc (use brew for macOS)
brew install pandoc

# then this is the command to convert the file
# the markdown type converts tables and the extract media will put all images in ./media
pandoc -f docx -t markdown my-document.docx -o my-markdown.md --extract-media=./

That's it. Short one. Hope it helps!