OrgMode Reference
This is the general building block for org-mode navigation.
- underscores let you underline things
- stars add emphasis
- slashes are italics
pluses are strikethroughequal signs are verbatim text
tildes can also be used
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- First Item
- Second Item
- Subitem 2.1
- Subitem 2.2
- [X] Completed Task
- [ ] Uncompleted Task
- Item A
- Subitem A.1
- Subitem A.2
- Item B
First Name | Last Name | Years using Emacs |
---|---|---|
Lee | Hinman | 5 |
Mike | Hunsinger | 2 |
Daniel | Glauser | 4 |
Really-long-first-name-guy | long-last-name-pers | 1 |
[[http://google.com/][Google]]
- [ ] sub task one
- [X] sub task two
- [ ] sub task three
(defun my/function ()
"docstring"
(interactive)
(progn
(+ 1 1)
(message "Hi")))