Skip to content

Latest commit

 

History

History
104 lines (71 loc) · 2.67 KB

File metadata and controls

104 lines (71 loc) · 2.67 KB

what is org-mode ?

  • It is a mode within emacs that started its life as an outliner .
  • org mode is usually used as a markup language to write notes ,to do lists , and much more.
  • It is an example of an exocortex , which is something to rely on other than your brain to remember things.

org-mode features

  • Easy outlining with tab folding to maximize focus on the task.
  • Task management & to-do lists with different states
    • t to cycle through the different states of the list item.

To do lists must be headers

  • DONE task uno

  • TODO 2nd task

  • TODO 3rd task

Progress indicators [2/3]

  • TODO barber

  • DONE walk dog

  • DONE launch

Percentorg mode age indicators [75%]

  • DONE wash car

  • DONE cook dinner

  • TODO run

  • DONE shower

Markup

Text Transformations

  • italic text
  • bold text
  • verbatim
  • stroke through text

Meta Data

  • Title
  • Options [disable/enable] features

Links [[address][description]]

  • C-c + C-l to create a link automatically
  • HTTP links my github
  • Local Links to files / todos / files / etc.. dotspacemacs
  • C-c + C-o to open a local link in a new buffer

Source Code

  • <s + tab to create a code block
  • C-c + ' to open a code block in a new buffer with it's mode
export PATH="`yarn global bin`:$PATH"

Raw HTML export

#+BEGIN_EXPORT html
<h3> RAW HTML </h3>
#+END_EXPORT

Smarter Tables

Student # Email Password
ryan ryanleulmi@gmail.com 1234
student another one asd21

Export to other formats from the same source

  • C-c + C-e
  • twitter bootstrap ox-twbs
  • html , pdf , markdown ox-gfm
  • org-export-backends to manage your export backends.
  • org-file-apps to change which apps your export backends use.