To people using org mode, how does it help you more than Markdown? Genuinely curious because I tried at some point and it felt too heavy. Maybe because I am a vim user instead of eMacs?
And you can insert snippets of code into your notes, like
#+BEGIN_SRC shell
ls | wc -l
find . -type f -name "*foo*"
#+END_SRC
(or javascript, elisp, html, ... instead of shell) where the markup is changed appropriately in these regions.You can even augment orgmode with elisp code if you are so inclined.