I've been manually converting articles into Markdown syntax for a few days now, and it's getting rather tedious. Some of these are 3 or 4 pages, italics and other emphasized text throughout. Is there a faster way to convert (.rtf|.doc) files to clean Markdown Syntax that I can take advantage of?

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

I'm not aware of anything that will convert directly from Word to Markdown. You could try using OpenOffice to convert to HTML and then convert that to Markdown (with Markdownify). Of course, whether or not the HTML output from OpenOffice is suitable for conversion to Markdown depends on how your Word documents have been formatted.

Alternatively, if you can get your files into RTF format you should be able to write a simple RTF to Markdown converter if you just need to handle a small set of formatting rules.

link|improve this answer
I can request articles in .rtf format from now on. I've updated my questiont-title to include .rtf. Do you happen to know of a ready-solution for converting rtf->html? If so, I can use Markdownify for html->markdown. – Jonathan Sampson Jun 25 '09 at 16:46
feedback

If you happen to be on a mac, textutil does a good job of converting doc, docx, and rtf to html, and pandoc does a good job of converting the resulting html to markdown:

$ textutil --convert html file.doc | pandoc -f html -t markdown

I have a script that I threw together a while back that tries to use textutil, pdf2html, and pandoc to convert whatever I throw at it to markdown.

link|improve this answer
I just tried this for converting from Word to markdown, and it worked wonderfully. Thanks. – Jeffrey Scofield Dec 8 '11 at 9:18
Brilliant thanks! I found I had to use: textutil -convert html file.doc -stdout | pandoc -f html -t markdown -o file.md – danodonovan Feb 15 at 18:48
feedback

ProgTips has a possible solution; try this: http://tips.naivist.net/2006/02/02/word_to_markdown_converter/

link|improve this answer
feedback

Pandoc is a good command-line conversion tool, but again, you will first need to get the input into a format that Pandoc can read, which is:

  • markdown
  • reStructuredText
  • textile
  • HTML
  • LaTeX
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.