I made this this org-mode cheatsheet as simple as possible, this cheatsheet intended for contributors who want to contribute project with org-mode as readme file.
Heading
* H1
** H2
*** H3
Emphasis
/italics/, *bold*, _underline_
~inline code~, =verbatim text= ,+deleted text+
super^{script}, sub_{script}
List
Unordered lists
- Animal.
- Fruit.
+ Apple.
* Red Apple.
Ordered lists
1. Animal
A. Lion
a. Red Lion.
b. Blue Lion.
B. Tiger.
2. Fruit.
Links
[[http://orgmode.org/][Org mode Web site]]
automatic
http://www.gnu.org (automatic!)
Image links
[[http://orgmode.org/][file:images/org-mode-unicorn.png]]
Inline anchors
Anchors are used to specify hypertext link targets.
<<anchor>> Inline anchors make arbitrary content referenceable.
Images
[[/img/org-mode-unicorn.png][Monocerus glaucus]]
Image with captions
#+CAPTION: Monocerus glaucus
#+ATTR_HTML: alt="Monocerus glaucus"
[[[[/img/org-mode-unicorn.png]]]]
Image positioning
#+ATTR_HTML: style="float:right;margin:0px 0px 20px 20px;"
[[/img/org-mode-unicorn.png]]
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
#+ATTR_HTML: style="float:left;margin:20px 20px 20px 0px;"
[[/img/org-mode-unicorn.png]]
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
To learn more about images, read Images and XHTML export
Code and Syntax Highlighting
inline
~foo~, ~baz~
source code block
#+BEGIN_SRC lisp
#+END_SRC
Tables
| a | b | c |
|---+---+---|
| 1 | 2 | 3 |
| 4 | 5 | 6 |
Document settings
#+OPTIONS:
#+STARTUP:
for startup:
- showeverything
- align
for options:
- toc:nil = don’t preserve table of content
- num:nil = no numbering
- H:4 = heading level
- \n:t = add new line (\)
for more information see Export Options
Credits
- Org mode syntax reference card by Fabrice Niessen
- Markdown Here Cheatsheet by Adam Pritchard
- The compact Org-mode Guide
- Images and XHTML export
Comments
So what do you think ? Leave your comments below.