Skip to content

Instantly share code, notes, and snippets.

View karstenmueller's full-sized avatar

Karsten Müller karstenmueller

View GitHub Profile
@karstenmueller
karstenmueller / docx2md.md
Created April 29, 2016 11:11 — forked from jesperronn/docx2md.md
Convert a Word Document into MD

Converting a Word Document to Markdown in One Move

The Problem

A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.

Installing Pandoc

On a mac you can use homebrew by running the command brew install pandoc.

The Solution