-
Notifications
You must be signed in to change notification settings - Fork 249
/
minimal.html
82 lines (62 loc) · 1.98 KB
/
minimal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>reveal.js minimal</title>
<!-- Replace '@latest' below to current version numbers to ensure long-term functionality
surviving potential breaking changes in future versions -->
<!-- Reveal.js -->
<script src="https://cdn.jsdelivr.net/npm/reveal.js@latest/dist/reveal.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@latest/dist/reveal.css">
<!-- Change theme as you like -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@latest/dist/theme/blood.css" id="theme">
<!-- Native plugins of reveal.js -->
<script src="https://cdn.jsdelivr.net/npm/reveal.js@latest/plugin/markdown/markdown.js"></script>
<!-- Menu plugin -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/menu.js"></script>
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/menu.css " rel="stylesheet">
<!-- Add other plugins and additional style sheets -->
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown data-separator="^\n===\n$" data-separator-vertical="^\n---\n$">
# Reveal.js playground
---
This is a minimal slide deck to be used as a playground for creating more advanced presentations.
===
## Plugins
The only plugins added to this presentations are
- the [`markdown` plugin](https://revealjs.com/markdown/) and
- the [`menu` plugin](https://github.com/denehyg/reveal.js-menu).
===
## The end
</section>
</div>
</div>
<script>
Reveal.initialize({
width: 1280,
height: 900,
// add other configuration parameters
// ...
// add menu plugin configuration
menu: {
themes: false,
transitions: false,
markers: true,
hideMissingTitles: true,
},
// add other plugin configurations
// ...
// load plugins
plugins: [
RevealMarkdown,
RevealMenu,
// add other plugins
// ...
]
});
</script>
</body>
</html>