From 9e28ebd430f93ab72d8625b042b2f5e687ed6ad8 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 18 Sep 2019 21:48:29 +0200 Subject: [PATCH] further work on talk --- org-mode.org | 71 +++++++++++++++++++++++++++++----------------------- 1 file changed, 39 insertions(+), 32 deletions(-) diff --git a/org-mode.org b/org-mode.org index 99b6003..83ace47 100644 --- a/org-mode.org +++ b/org-mode.org @@ -4,49 +4,56 @@ #+OPTIONS: toc:nil num:nil #+REVEAL_THEME: beige -#+REVEAL_HLEVEL: 2 +#+REVEAL_HLEVEL: 1 #+REVEAL_INIT_OPTIONS: hash: true #+REVEAL_HEAD_PREAMBLE: #+REVEAL_POSTAMBLE:

NERD ALARM

#+REVEAL_ROOT: https://cdn.jsdelivr.net/npm/reveal.js -* Why -** saw a [[youtube:JWD1Fpdd4Pc][talk]] on why a vim'er switched to emacs -** mentioned org-mode as a gateway drug to emacs -** watched another [[youtube:oJTwQvgfgMM][talk of the author]] Carsten Dominik -** the main idea of the project are terrific +* 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 - #+BEGIN_QUOTE - - Plain text files are the only portable document format. - - Make note taking a fundamental action. - - Avoid separate tools for note taking and tasks. - #+END_QUOTE +* 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 -* What is org-mode +#+BEGIN_SRC org +,* This Is A Heading +,** This Is A Sub-Heading +,*** And A Sub-Sub-Heading - #+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 +Paragraphs are separated by at least one empty line. -** yet another outliner +,*bold* /italic/ _underlined_ +strikethrough+ =monospaced= +[[http://Karl-Voit.at][Link description]] +http://Karl-Voit.at → link without description - #+BEGIN_SRC org - * A header - Some elaborate text about this topic... - ** A sub header - *** A sub sub header - With even more text. - #+END_SRC +- list item +- another item + - sub-item + 1. also enumerated + 2. if you like +- [ ] yet to be done +- [X] item which is done -** tasks +: Simple pre-formatted text such as for source code. +: This also respects the line breaks. *bold* is not bold here. - #+BEGIN_SRC org - * A project - Some elaborate text about this topic... - ** DONE A done taks - ** TODO Some task that is still to be done - Let's describe what should be done here - #+END_SRC +#+END_SRC + +* mode + +** emacs mode -** ...with superpowers - bear with me * [[file+emacs:~/org/org-mode-demo.org][Demo]]