Skip to content

Latest commit

 

History

History
74 lines (63 loc) · 1.59 KB

orgmode-reference.org

File metadata and controls

74 lines (63 loc) · 1.59 KB

OrgMode Reference

Headline

Nested headline

Deeper

Basic markup

This is the general building block for org-mode navigation.

  • underscores let you underline things
  • stars add emphasis
  • slashes are italics
  • pluses are strikethrough
  • equal signs are verbatim text
  • tildes can also be used

List

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2

Ordered List

  1. First Item
  2. Second Item
    1. Subitem 2.1
    2. Subitem 2.2
  • [X] Completed Task
  • [ ] Uncompleted Task

Nested List

  • Item A
    • Subitem A.1
    • Subitem A.2
  • Item B

Tables

First NameLast NameYears using Emacs
LeeHinman5
MikeHunsinger2
DanielGlauser4
Really-long-first-name-guylong-last-name-pers1

Org-mode links

[[http://google.com/][Google]]

./images/pic1.png

List

This is a task that needs doing

Another todo task

  • [ ] sub task one
  • [X] sub task two
  • [ ] sub task three

I’ve already finished this one

CANCELLED learn todos

Code

(defun my/function ()
  "docstring"
  (interactive)
  (progn
    (+ 1 1)
    (message "Hi")))