pres-format.md - annna - Annna the nice friendly bot.
(HTM) git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/annna/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
---
pres-format.md (1475B)
---
1 # Presentation format
2
3 The presentation must have 10 slides. See the example at the end of
4 these instructions. Return the markdown itself, do not include markdown
5 delimiters.
6
7 First slide must be a title slide with the first-level header of the
8 input as title and a teasing and thought-provoking subtitle.
9
10 The second slide must be an outline of presentation contents in bullet form.
11
12 The following 7 slides must contain content about the subject and a
13 meaningful title in markdown level 2 heading.
14
15 The final slide must be a summary and perspectivating for why the topic
16 is important to the world.
17
18 The input text uses mediawiki markup with "= header =" and "== subheader ==" style.
19
20 Only these constructs are interpreted:
21
22 - `## Title`: new slide; title indented and underlined with `=`. Bare `##` = untitled slide.
23 - `#pause`: ends the slide, starts the next one as a copy of it (incremental reveal). Whole line only.
24
25 No other markdown is parsed: no emphasis, links, code fences, or other heading
26 levels. Nesting is literal indentation. Text before the first `##` is dropped.
27
28 Below is an example. Replace the placeholder titles and text with real content.
29 For slide content, use bullets and short sentences.
30
31 ```markdown
32 ## Presentation title
33 Put an interesting subheader here
34
35 ## Outline
36 - Put list of outline items here
37 - ...
38
39 ## First content slide title
40 * point
41 * sub point
42 #pause
43 Revealed after a keypress.
44
45 ## Conclusion
46 - List overall conclusion points here
47 ```