Org-mode to Markdown converter?

13

2

I have an org-mode file that is mostly just an outline, and want to convert it to Markdown. But it is a long and big file, so is there a piece of software that can do this for me? I use Mac OS X, but am willing to do this in another OS if needed.

Thank you.

hpy

Posted 2012-07-23T20:25:45.023

Reputation: 5 269

Answers

4

Newer versions of org-mode (>= 8.0) can export to markdown directly: http://orgmode.org/manual/Markdown-export.html

But you should note that there is no menu to export to markdown by default, and you need to add the following configuration to your .emacs file such that emacs automatically loads markdown export mode: https://stackoverflow.com/questions/22988092/emacs-org-mode-export-markdown

(eval-after-load "org"
  '(require 'ox-md nil t))

inix

Posted 2012-07-23T20:25:45.023

Reputation: 56

4

It looks like there's still some work to be done, but this project may meet your needs.

Craig Citro

Posted 2012-07-23T20:25:45.023

Reputation: 181

After installing some depedencies this project needs, I was able to export my org-mode document to markdown. Thank you very much for your suggestion! – hpy – 2012-08-06T15:15:22.400

3

So, it turns out you can do this now, with the shiny new markdown exporter

http://orgmode.org/org.html#Markdown-export

user224289

Posted 2012-07-23T20:25:45.023

Reputation: 31