Markup Cheat sheet for Org-mode
Table of Contents
1. Heading 1
1.1. Heading 2
1.1.1. Heading 3
* Heading 1 ** Heading 2 *** Heading 3
2. styling
bold ital underline code
verbatim
*bold* /ital/ _underline_ =code= ~verbatim~
Or add : to beginning of line to ignore org markup
3. links
[[http://www.google.com][google]]
[[http://orgmode.org/worg/images/orgweb/2.jpg]]
Links to images without description get inserted as is.
C-c C-l to insert or edit a link
4. quotes
quoted text
#+begin_quote quoted text #+end_quote
5. source code
cliks.onValue(function() { vouchdb.docSave({ msg:'resetpwd', pwd: $("#password1")[0].value, uuid: location.search.slice(10), callback: callback }, 'reception') .when( function(data) { console.log('Posted resetpwd msg'); }, function(err) { console.log('Error posting resetpwd msg:', err); } ); });
#+begin_src javascript <source code> #+end_src
C-c ' to edit source code, C-c ' to return and update
6. lines
–— horizontal line (5 dashes)
----- horizontal line (5 dashes)
7. tables
Col1 | Col 2 |
---|---|
KW | Sep |
TW | Aug |
| Col1 | Col 2| |------|------| Press | TAB | KW | Sep | | TW | Aug |
8. lists
8.1. numbered
- number list, use 1. or 1)
- line
- line 3
8.2. unnumbered
- use - or +
- bullet list
- line 2
1. number list, alternate 1) - bullet list, alternate +
alt-enter at end of line to add a new one
9. comments
# comment (not exported)