Org-mode to Markdown converter?

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


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

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


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))