Merge branch 'master' of ssh://repo.or.cz/srv/git/Worg
[Worg.git] / org-info-js.org
blob1cec667483ecc9148e0765ea3d189d76561ec6b4
1 #+STARTUP:    align fold nodlcheck hidestars oddeven lognotestate
2 #+SEQ_TODO:   SUGGESTION(s) TOIMPLEMENT(t) IMPLEMENTED(i)
3 #+SEQ_TODO:   BUGREPORT(r) BUG(b) FIXED(f)
4 #+TITLE:      org-info-js
5 #+AUTHOR:     Worg people
6 #+LANGUAGE:   en
7 #+CATEGORY:   org-info-js
8 #+OPTIONS:    H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t TeX:t LaTeX:t skip:nil d:(HIDE) tags:not-in-toc
10 * org-info-js by Sebastian Rose
12 org-info-js is a great javascript tool to navigate through a HTML page
13 (as exported by Org) the way you navigate through an Org or an info
14 manual, i.e. supporting folding, previous/next buttons, etc.
16 ** org-info-js as powerpoint
18 It was [[http://www.mail-archive.com/emacs-orgmode@gnu.org/msg07820.html][noticed]] that files exported by org-info-js were similar to [[http://meyerweb.com/eric/tools/s5/][s5]]
19 the simple standards-based Slide Show System.  After some hacking,
20 Sebastian Rose added some features to allow org-mode and org-info-js
21 to be used to create simple slide shows and presentations.
23 An example org-info-js presentation can be found [[file:code/org-info-js/org-slides][here]]
25 *** SUGGESTION #+TITLE's shouldn't display on every slide by default
27 The title for each slide should (by default) be the slides heading.
29 *** SUGGESTION Name for org-info-js slide show extension(s)
31 Some suggested names for this functionality.
33 - org-present
34 - org-point
35 - org-note (as in keynote)
36 - present-org
38 *** SUGGESTION Use properties to reveal bullet points
40 To have bullet points reveal themselves one by one in org-info-js you
41 need to replicate the slide many times, e.g.
43 #+BEGIN_SRC org
44 ,* Overview
46 ,+ The first point
48 ,* Overview
50 ,+ The first point
51 ,+ The second point revealed
53 ,* Overview
55 ,+ The first point
56 ,+ The second point revealed
57 ,+ The third point (note the duplication of the slide)
58 #+END_SRC
60 Rather than this, we might (assuming properties can be exported) be
61 able to support a syntax like the following:
63 #+BEGIN_SRC org
64 ,* Overview
65 , :PROPERTIES:
66 , :reveal:   t
67 , :END:
69 , + Revealed properties
70 , + Appear one after the other
71 , + But this time only need to be stated once!
72 #+END_SRC