mirror of
https://github.com/tomru/org.git
synced 2026-03-03 06:27:22 +01:00
60 lines
1.6 KiB
Org Mode
60 lines
1.6 KiB
Org Mode
#+TITLE: org-mode
|
|
#+Author: Thomas Ruoff
|
|
#+Email: thomasr@brandwatch.com
|
|
|
|
#+OPTIONS: toc:nil num:nil
|
|
#+REVEAL_THEME: beige
|
|
#+REVEAL_HLEVEL: 1
|
|
#+REVEAL_INIT_OPTIONS: hash: true
|
|
#+REVEAL_HEAD_PREAMBLE: <meta name="description" content="Org-Mode Introduction.">
|
|
#+REVEAL_POSTAMBLE: <p> NERD ALARM </p>
|
|
#+REVEAL_ROOT: https://cdn.jsdelivr.net/npm/reveal.js
|
|
|
|
* how did I end up here?
|
|
- watched a [[youtube:JWD1Fpdd4Pc][talk]] on why a vim'er switched to Emacs mentioning org-mode
|
|
- after reading org-mode mentioned as a gateway drug to Emacs
|
|
- watched a [[youtube:oJTwQvgfgMM][talk]] of the org-mode author Carsten Dominik
|
|
|
|
* motivations
|
|
#+BEGIN_QUOTE
|
|
- Plain text files are the only portable document format.
|
|
- Avoid separate tools for note taking and tasks.
|
|
#+END_QUOTE
|
|
* what is it today
|
|
#+BEGIN_QUOTE
|
|
Org mode is for keeping notes, maintaining TODO lists, planning projects, and
|
|
authoring documents with a fast and effective plain-text system.
|
|
#+END_QUOTE
|
|
* org
|
|
- yet another markup language quite close to Markdown
|
|
|
|
#+BEGIN_SRC org
|
|
,* This Is A Heading
|
|
,** This Is A Sub-Heading
|
|
,*** And A Sub-Sub-Heading
|
|
|
|
Paragraphs are separated by at least one empty line.
|
|
|
|
,*bold* /italic/ _underlined_ +strikethrough+ =monospaced=
|
|
[[http://Karl-Voit.at][Link description]]
|
|
http://Karl-Voit.at → link without description
|
|
|
|
- list item
|
|
- another item
|
|
- sub-item
|
|
1. also enumerated
|
|
2. if you like
|
|
- [ ] yet to be done
|
|
- [X] item which is done
|
|
|
|
: Simple pre-formatted text such as for source code.
|
|
: This also respects the line breaks. *bold* is not bold here.
|
|
|
|
#+END_SRC
|
|
|
|
* mode
|
|
|
|
** emacs mode
|
|
|
|
* [[file+emacs:~/org/org-mode-demo.org][Demo]]
|