This repository was archived by the owner on Sep 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 22
33### Hack together simple slides
44
5+ <!-- .slide: data-transition="zoom" -->
6+
57---
68
79## The Basics
810
911- Separate slides using '` --- ` ' on a blank line
12+ - For vertical slides use '` -- ` '
1013- Write github flavored markdown
1114- Click 'Present' (top right) when you're ready to talk
1215
2427
2528---
2629
30+ ## More markdown (fragments)
31+
32+ * static text
33+ * fragment <!-- .element: class="fragment" -->
34+ * fragment grow <!-- .element: class="fragment grow" -->
35+ * fragment highlight-red <!-- .element: class="fragment highlight-red" -->
36+ * press key down <!-- .element: class="fragment fade-up" -->
37+
38+ --
39+
40+ ## More markdown (tables)
41+
42+ ****
43+
44+ | h1| h2| h3|
45+ | -| -| -|
46+ | a| b| c|
47+
48+ ****
49+
50+ --
51+
52+ ## More markdown (code)
53+
54+ ```
55+ version: '2'
56+ services:
57+ slides:
58+ image: msoedov/hacker-slides
59+
60+ ports:
61+ - 8080:8080
62+ volumes:
63+ - ./slides:/app/slides
64+ restart: always
65+
66+ environment:
67+ - USER=bob
68+ - PASSWORD=pa55
69+
70+ ```
71+
72+ ---
73+
2774## Learn more
2875
2976- [ RevealJS Demo/Manual] ( http://lab.hakim.se/reveal-js )
You can’t perform that action at this time.
0 commit comments