  Begin org-mode                               ALT-x org-mode
  Save                                         CTRL-x CTRL-s
  Export in other file formats (eg HTML,PDF)   CTRL-c CTRL-e

# Outline

  Section heading                              *
  New headline                                 ALT-return
  Move headline up or down                     ALT-up_arrow/down_arrow
  Adjust indent depth of headline              ALT-left_arrow/right_arrow
  Open/collapse section                        TAB
  Open/collapse All                            CTRL-TAB

# To-Do Lists

  Mark list item as TODO                       ** TODO
  Cycle through workflow                       SHIFT-left_arrow/right_arrow
  Show only outstanding TODO                   items CTRL-c CTRL-v

# Tables

  Table column separator                       Vertical/pipe character
  Reorganize table                             TAB
  Move column                                  ALT-left_arrow/right_arrow
  Move row                                     ALT-up_arrow/down_arrow

# Styles

  *bold*
  /italic/
  _underlined_
  =code=
  ~verbatim~
  +strike-through+

# Heading

  Header         -*- mode: org -*-

# .emacs

  To make org-mode automatically wrap lines:

    (add-hook 'org-mode-hook
              '(lambda ()
                 (visual-line-mode 1)))
