-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.07 KB
/
index.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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>reveal.js - Markdown Example</title>
<meta name="description" content="Put your description here.">
<link rel="stylesheet" href="dist/css/reveal.css">
<link rel="stylesheet" href="dist/css/theme/black.css">
<script src="dist/js/reveal.js"></script>
<script src="dist/js/plugin/markdown/markdown.js"></script>
<script src="dist/js/plugin/notes/notes.js"></script>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->
<section
data-markdown="markdown.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
>
</section>
</div>
</div>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
plugins: [ RevealMarkdown, RevealNotes ]
});
</script>
</body>
</html>