The Computer Oracle

Org-mode to Markdown converter?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 3 Looping

--

Chapters
00:00 Org-Mode To Markdown Converter?
00:23 Accepted Answer Score 5
00:46 Answer 2 Score 4
00:56 Answer 3 Score 4
01:05 Answer 4 Score 1
01:28 Thank you

--

Full question
https://superuser.com/questions/452649/o...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#conversion #markdown #orgmode

#avk47



ACCEPTED ANSWER

Score 5


Newer versions of org-mode (>= 8.0) can export to markdown directly: https://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))



ANSWER 2

Score 4


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




ANSWER 3

Score 4


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

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




ANSWER 4

Score 1


If you are looking for a tool to do this outside of Emacs, you should definitely look at Pandoc. In addition to allowing you to convert orgdown files to a multitude of file formats, you can notably also add style to the document at the same time. In other words, just like how we split up HTML and CSS, with pandoc we can keep the design of the document separate from the content.