Org-mode to Markdown converter

conversionmarkdownorg-mode

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.

Best Answer

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