Compare markdown and org-mode
Asked Answered
F

6

63

I use Emacs for years, and nowadays, I write a lot of files in org mode, such as notes, plans/conclusions or something else. However but most website support markdown-style instead of org-style. StackOverflow is an example. :)

Can someone tell me the exact difference between these two? Pros and cons? And which did you choose and why?

Figurine answered 5/4, 2012 at 10:48 Comment(4)
Note that you can use markdown-mode in Org-mode.Tomasine
@Tomasine Nice post, Thank you so much. Org mode is really a hole for us to grasp it well. :)Figurine
This sounds really obvious but I'm not sure it has been mentioned. Have you looked at org-md-export-to-markdown?Porphyritic
related article: Org Mode Syntax Is One of the Most Reasonable Markup Languages to Use for Text (karl-voit.at)Belligerent
L
48

I think markdown and org derive from the different demands, while they coincidently have the similar markup syntax to edit plain text documents.

Markdown is only designed to easily read/write plain text. Refer to its philosophy:

Markdown is intended to be as easy-to-read and easy-to-write as is feasible.

However, org is more complicated and it also has more features. You can use org for GTD, maintaining TODO lists, project plans etc. And the markup syntax seems just one accessory in the whole org system.

In my options, if only write some plain documents, you can choose anyone as you wish. However, if GTD or intend to export your plain documents for more formats (tex/pdf/docbook), you have to choose org.

Levis answered 6/4, 2012 at 6:24 Comment(3)
Fully agree. If, like me, you are a die-hard org-mode user who is gravitating towards Markdown for some use cases (e.g. sharing a project with non-Emacsers on GitHub), you might find it interesting to know that things like (global-set-key [(control c) (.)] 'org-time-stamp) happen to work!Monodic
pandoc markdown also allows export to multiple formats (pandoc.org/MANUAL.html).Fredela
@Fredela - Pandoc also allows to export from org-mode to Markdown, just in case you are forced to use the second format.Timberlake
P
35

I started out with markdown, but switched to org-mode after a few years of using markdown.

I think that Markdown is more readable than org-mode - especially if you don’t use Emacs. You have the special headings with underline while org-mode uses a line starting with #+title: as title and *, **, … for chapter/section/… headings. Also markdown links are [text](link) instead of [[link][text]] and footnotes are [^footnote] instead of [fn:footnote].

On the other hand, org-mode can do about everything you might want to do with a plain-text list - from planning your work and scheduling your writing time to including code-fragments which actually can get executed on export, so an exported document always contains the output of the latest version of the code automatically.

I switched to org-mode after starting to use it just for todo lists. Then I realized that I could also write nicely in it. And that the link syntax might be more complex than markdown, but C-c C-l generates it for me. And that exporting just works.

If you use emacs, I would definitely suggest org-mode.

I even write for my markdown-based website with org-mode, using the markdown-export, which for example adds support for convenient creation and editing of beautiful tables.

Paisley answered 18/1, 2013 at 10:24 Comment(3)
I'm not very familiar with markdown (which is why I'm reading this), but I find org-mode on emacs a great way to quickly build short data-tables and TODO lists. It's ability to export (and embed) to other formats (including markdown, but also more powerful formats like (La)TeX) is also great. My feeling is that you're comparing a good lawn-mower (markdown) with a whole shed of excellent tools (org-mode).Counterrevolution
Well, there is something going for tools which are tailored to one requirement -- they can be a somewhat better fit for that requirement than any tool which also has to support something else -- but org mode is such a huge win in everything else, and that with so little additional overhead and without any esoteric-feeling syntax, that I have strong preference for org-mode nowadays.Paisley
If you want to write a static website based on org-mode markdown you can use plugins to enable the use of org-mode markdown directly. For example pelican and jeckl have plugins.Glasgow
C
19

I love org-mode. But I do sometimes wonder if the definition of 'plain text' is stretched a little far? Particularly when you look at org files outside of emacs. You could say HTML is plain-text too...? Okay org's not so bad as that, but it's pretty illegible without CSH and folding. Markdown certainly is just as readable without CSH as it is with.

Other than that though, I prefer org-mode, and the ability to export from org to Markdown (or HTML, or PDF or ...) means that it's pretty well able to be consumed (read-only) all over the Web now, not just by Emacs people.

I prefer also org-mode's link style [[url][text]] as it mirrors HTML's <a href=url>text</a>; moin-moin's [[url|text]], and MediaWiki's [url text], whereas Markdown's syntax [text](url) is the wrong way around to my mind -- and I always end up getting this wrong when I use it! I suppose it's because in reStructured Text a link is written this way around too: `text <url>_` (and surrounded with backquotes, which are hard to do in Markdown code blocks, I am learning -- thanks for the Edit @Demi !)

Cleptomania answered 22/8, 2014 at 5:47 Comment(8)
I prefer the makdown style of URLs, because it lends itself to writing the text and filling the URLs later. But I use org-mode, because the tool support in Emacs is much, much better and it provides lots of additional features I use and need.Paisley
I consider readability of org-files outside emacs as much better than HTML. Not quite as good as Markdown or similar syntax built on how we write email, but still leagues away from HTML. Compare * Headline to <h1>Headline</h1> or #+title: I AM to <html><head><title>I AM</title></head><body></body></html>Paisley
@ArneBabenhauserheide these are both good points. I can see the argument for Python/reST style links, I just don't like them ;-) Similarly for the readability: I was being flippant. Mind you, once you see some of the more esoteric stuff in Org (tables and #+START tags come to mind), one starts to wonder.Cleptomania
the tables are really cool. They alone recently got a friend of mine to switch to org-mode, without being an emacs user before :) I use org-mode as build-tool there, though. I created a collaboration setup for that in bitbucket.org/ArneBab/1w6/src/…Paisley
there is really deep stuff in org — my PhD thesis had lots of #+latex_header: … stuff in it, and you can actually use #+begin_kasten to start a html environment <div class="kasten">...Paisley
The thing with org-mode is that the user has lots of choice (and control) on how things look. One could complicate it and make it as readable (or worse than) HTML, but you can keep it "markdown" like.Counterrevolution
What does CSH mean?Goldfarb
Ah, sorry, yes that is a good question :-) It stands for Colour Syntax HighlightingCleptomania
T
14

I don't know much about markdown, but org-mode can really do a lot of things. You can write your report and export it to latex, you can write presentation using the beamer class. You can do literate programming with org-babel, you can use the agenda, use tags, manage tasks, ...

This video is a nice example of what you can do with org-mode.

Tingle answered 5/4, 2012 at 21:14 Comment(2)
Nice video. But Org-mode is a little bit complex, and, I like that. :) As a C++ programmer, org-mode is an obvious answer for this question.Figurine
Howard Abrams has two excellent YouTube videos that show off Emacs and Org. The most relevant to this question is youtube.com/watch?v=dljNabciEGg which is using the Org Babel infrastructure to do Literate Programming, applied to DevOpsCleptomania
E
8

Just adding an opinion that hasn't been mentioned: almost all of the benefits people have mentioned regarding org-mode have more to do with emacs than org-mode. All of the powerful features mentioned really have nothing to do org-mode as a plain text file format. You could build a program around markdown that gives you all the benefits you get with emacs + org-mode; there just isn't one.

The actual differences between the file format of org-mode and markdown are somewhat superficial (for example, the table format is almost identical between the two); there's clearly a big degree of experience + personal preference driving the discussion. But to the emacs+org-mode people: sell us on your tool, not the format (and don't conflate the two). If I can't get the benefits of org-mode without giving up the text-editing software I already enjoy using, then it's hardly useful to me in this discussion.

See here for an interesting discussion on this.

Emblaze answered 1/1, 2022 at 19:21 Comment(3)
I completely agree with your comment, and you hit the spot regarding "degree of experience personal preference". Since I use Emacs/org-mode, but also other IDE/editors like IntelliJ and VScode, and from time to time I hate Emacs... I wonder which text-editor do you use. Regards!Medici
@Medici thanks! I primarily use sublime text. do you find that the more powerful IDEs you mentioned (IntelliJ, VScode) are worth it for the extra features?Emblaze
Well, I use IntelliJ for Java/SpringBoot stuff, which otherwise would be a pain. IntelliJ is currently a must if you work on that land. My main use of VScode is for C/C++ under Windows for small projects, which is fine. I have also used VisualStudio, but I am not that used to its shortcuts, and probably Visual C++ 6.0 was better than current one..., unless you would need to do .NET stuff.Medici
B
0

Below is a table of comparison (which might be opinionated) along with some references, but I hope would keep getting updated by the community

References:

Pros & Cons

Pros Cons
Markdown - Less Learning Curve1
- Well known and supported by default with various tools
- Multiple markdown flavors (36 as of now)
- Cannot evaluate code-blocks
Org Mode - Literate Programming
- Can be used to replaces all applications using EXWM
- Slightly longer learning curve1
- Typically used with Emacs

1 Note I personally feel org-mode has longer learning curve because

  1. it is usually associated with emacs
  2. the documentation is more developer oriented
  3. org-mode has a lot of features, so it's easy to get lost in the rabbit-hole

Syntax Comparision

Markdown Org Mode Comment
*Flavor/Syntax Multiple markdown flavors (36 as of now) Single Universal flavor markdown can have multiple flavors
Bold **bold** *bold*
Italic *italic* /italic/
Strikethrough ~~strikethrough~~ +strikethrough+
underline N/A _underline_
highlight/verbatim ==highlight== =verbatim=
Link Syntax [title](url) [[url][title]]
Image Preview sytax ![alt text](image path/url) [[./path/to/image.png]]
Headings Syntax stars (*) hashtags (#)
Unordered Lists syntax - - or + or *
Code block syntax three backticks ``` #+begin_src AND #+end_src
inline code inline-code ~code~ AND src_<language>{<body>} Org mode also supports inline executable code blocks
Footnotes [^1] [fn:1]
Horizontal Rule --- -----
Todo States [ ] or [x] TODO or DONE customizable based on tools
Subscript H~2~O H_{2}O no globabl markdown support
Superscript X^2^ X^2
Tables In-built support in-built support both modes have similar syntax

Feature Comparision

Markdown Org Mode Comment
Latex not in-built in-built support
Table Formula's N/A In built support Org as a spreadsheet system: a short introduction (orgmode.org)
Codeblock Evaluation N/A in-built support
Export to PDF in-built support
Export to HTML in-built support
Belligerent answered 13/7, 2024 at 9:7 Comment(1)
another useful reference: - Why did you choose obsidian instead of emacs? - Meta - Obsidian ForumBelligerent

© 2022 - 2025 — McMap. All rights reserved.