Is there a program or workflow to convert .doc
or .docx
files to Markdown or similar text?
PS: Ideally, I would welcome the option that a specific font (e.g. consolas
) in the MS Word document will be rendered to text-code: ```....```
.
Is there a program or workflow to convert .doc
or .docx
files to Markdown or similar text?
PS: Ideally, I would welcome the option that a specific font (e.g. consolas
) in the MS Word document will be rendered to text-code: ```....```
.
Pandoc supports conversion from docx to markdown directly:
pandoc -f docx -t markdown foo.docx -o foo.markdown
Several markdown formats are supported:
-t gfm (GitHub-Flavored Markdown)
-t markdown_mmd (MultiMarkdown)
-t markdown (pandoc’s extended Markdown)
-t markdown_strict (original unextended Markdown)
-t markdown_phpextra (PHP Markdown Extra)
-t commonmark (CommonMark Markdown)
brew install pandoc
) –
Supertax --extract-media=./
to the command above. It will create a folder media
with all the images and they will be correctly shown in the markdown file. –
Steady pandoc -f docx -t markdown foo.docx -o foo.markdown
command? When I type into my RStudio console, I get Error: unexpected symbol in "pandoc -f docx"
–
Micaelamicah dir *.docx -Recurse | % {pandoc -f docx -t markdown $_ -o "$($_.BaseName).md"}
–
Coyle Specifically regarding the question (docx --> markdown
), use the Writeage plugin for Microsoft Word. It also works the other way round markdown --> docx
.
I've tested these three: (1) Pandoc (2) Mammoth (3) w2m
By far the superior tool for conversions with support for a multitude of file types (see Pandoc's man page
for supported file types):
pandoc -f docx -t gfm somedoc.docx -o somedoc.md
To get pandoc
to export markdown tables ('pipe_tables' in pandoc) use multimarkdown
or gfm
output formats.
If formatting to PDF, pandoc
uses LaTeX
templates for this so you may need to install the LaTeX
package for your OS if that command does not work out of the box. Instructions at LaTeX Installation
For docx
, use Writeage.
If you wish to preserve unicode characters, emojis and maintain superior fonts, you'll get some milage from the editors below when using copy-and-paste operations between file formats. Note, these do not read or write natively to docx
.
For a programatic equivalent, you might get some results by calling a different pdf-engine and their respective options but I haven't tested this. The pandoc defaults to 'pdflatex'.
pandoc --pdf-engine=
pandoc --pdf-engine-opt=STRING
For outside the US, set the geometry variable:
pandoc -s -V geometry:a4paper -o outfile.pdf infile.md
Its worth mentioning here - what's not obvious when discovering Markdown is that MultiMarkdown is by far the most feature rich markdown format.
MultiMarkdown supports amongst other things - metadata, table of contents, footnotes, maths, tables and YAML.
But Github's default format uses gfm
which also supports tables. I use gfm
for Github/GitLab and MultiMarkdown
for everything else.
Mammoth is best known as a Word to HTML converter but it now supports a Markdown writer module. When I last checked, Mammoth Markdown support was still in its early stages, so you may find some features are unsupported. As usual ... check the website for the latest details.
To use the Javascript version ... install NodeJS and then install Mammoth:
npm install -g mammoth
Command line to convert a Word document to Markdown ...
mammoth document.docx --output-format=markdown
NodeJS API to convert to Markdown ...
var mammoth = require("mammoth");
mammoth.convertToMarkdown({path: "path/to/document.docx"});
Mammoth Markdown writer currently supports:
The Mammoth command line tools and API have been ported to several languages:
With NO Markdown (May 2016):
With Markdown:
mammoth document.docx --output-format=markdown > document.md
worked for me to generate a converted file, as it seems there is still no support for doing so directly –
Bren Given that you asked this question on stackoverflow you're probably wanting a programmatic or command line solution for which I've included another answer.
However, an alternative solution might be to use the Writage Markdown plugin for Microsoft Word.
Writage turns Word into your Markdown WYSIWYG editor, so you will be able to open a Markdown file and edit it like you normally edit any document in Microsoft Word. Also it will be possible to save your Word document as a Markdown file without any other converters.
Under the covers, Writage uses Pandoc that you'll also need to install for this plugin to work.
It currently supports the following Markdown elements:
This might be the ideal solution for many end users as they won't need to install or run any command line tools - but rather just stick with what they are most familiar.
You can use Word to Markdown (Ruby Gem) to convert it in one step. Conversion can be as simple as:
$ gem install word-to-markdown
$ w2m path/to/document.docx
It routes the document through LibreOffice, but also does it best to semantice headings based on their relative font size.
There's also a hosted version which would be as simple as drag-and-drop to convert.
Word to Markdown might be worth a shot, or the procedure described here using Calibre and Pandoc via HTMLZ, here's a bash script they use:
#!/bin/bash
mkdir temp
cp $1 temp
cd temp
ebook-convert $1 output.htmlz
unzip output.htmlz
cd ..
pandoc -f html -t markdown -o output.md temp/index.html
rm -R temp
You can convert Word documents from within MS Word to Markdown using this Visual Basic Script:
https://gist.github.com/hawkrives/2305254
Follow the instructions under "To use the code" to create a new Macro in Word.
Note: This converts the currently open Word document ato Markdown, which removes all the Word formatting (headings, lists, etc.). First save the Word document you plan to converts, and then save the document again as a new document before running the macro. This way you can always go back to the original Word document to make changes.
There are more examples of Word to markdown VB scripts here:
From here:
unoconv -f html test.docx
pandoc -f html -t markdown -o test.md test.html
Here's an open-source web application built in Ruby to do this exact thing: https://word2md.com
If you're using Linux, try Pandoc (first convert .doc/.docx into html with LibreOffice or something and then run it).
On Windows (or if Pandoc doesn't work), you can try this website (online demo, you can download it): Markdownify
pandoc -f html -t markdown -s mydoc.html -o mydoc.md
resulted in pure/non-restructured text (i.e. same as copy&paste to a text editor). What is your experience with these two? –
Agonize For bulleted lists you can paste a list into Sublime Text and use multiselect ( tested ) or find and replace ( not tested ) to replace eg the proprietary MS Word characters with -
, --
etc
This doesn't work with headings but it may be possible to use a similar technique with other elements.
© 2022 - 2024 — McMap. All rights reserved.
pandoc
now supports direct conversion from.docx
to.md
including math formulas. Take a look here example 35. – Jedjedd