-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreveal.html
More file actions
31 lines (30 loc) · 1.45 KB
/
reveal.html
File metadata and controls
31 lines (30 loc) · 1.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/dist/reset.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/dist/reveal.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/dist/theme/solarized.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/plugin/highlight/monokai.css" />
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="./docs/js/advanced/prototype.md" data-separator="^---" data-separator-vertical="^--" data-separator-notes="^Note:"></section>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/plugin/highlight/highlight.js"></script>
<script type="module">
import Reveal from 'https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/dist/reveal.esm.js'
import Markdown from 'https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/plugin/markdown/markdown.esm.js'
import RevealHighlight from 'https://cdn.jsdelivr.net/npm/reveal.js@4.3.1/plugin/highlight/highlight.esm.js'
let deck = new Reveal({
plugins: [Markdown, RevealHighlight],
})
deck.initialize()
</script>
</body>
</html>