67 lines
2.6 KiB
HTML
67 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css">
|
|
<link rel="stylesheet" href="node_modules/reveal.js/dist/theme/night.css">
|
|
<link rel="stylesheet" href="node_modules/reveal.js/plugin/highlight/zenburn.css">
|
|
<link rel="stylesheet" href="node_modules/reveal.js-drawer/dist/drawer.css">
|
|
<link rel="stylesheet" href="lib/attribution/plugin.css">
|
|
</head>
|
|
<body>
|
|
<div class="reveal">
|
|
<div class="slides">
|
|
<section>Hello, World!</section>
|
|
<section>
|
|
Slide 2!
|
|
|
|
<span class="attribution">
|
|
Template courtesy of <a target="_blank" href="https://code.garrettmills.dev/garrettmills/slides">my template</a>.
|
|
</span>
|
|
</section>
|
|
<section data-markdown>
|
|
<textarea data-template>
|
|
## Slide 3
|
|
This is a markdown slide!
|
|
|
|
- note1
|
|
- note2
|
|
- note3
|
|
|
|
```js
|
|
const a = `Hello, ${name}!`
|
|
```
|
|
---
|
|
## Slide 4
|
|
This contains some katex.
|
|
`$$\cfrac{(v, c) \Downarrow v'}{(v, c) \rightarrow v'}$$`
|
|
</textarea>
|
|
</script>
|
|
</div>
|
|
</div>
|
|
<script src="node_modules/reveal.js/dist/reveal.js"></script>
|
|
<script src="node_modules/reveal.js/plugin/markdown/markdown.js"></script>
|
|
<script src="node_modules/reveal.js/plugin/highlight/highlight.js"></script>
|
|
<script src="node_modules/reveal.js/plugin/math/math.js"></script>
|
|
<script src="node_modules/reveal.js/plugin/notes/notes.js"></script>
|
|
<script src="node_modules/reveal.js/plugin/search/search.js"></script>
|
|
<script src="node_modules/reveal.js-drawer/dist/drawer.js"></script>
|
|
<script src="lib/attribution/plugin.js"></script>
|
|
<script>
|
|
Reveal.initialize({
|
|
plugins: [
|
|
RevealMarkdown,
|
|
RevealHighlight,
|
|
RevealMath.KaTeX,
|
|
RevealNotes,
|
|
RevealSearch,
|
|
RevealDrawer,
|
|
RevealAttribution,
|
|
],
|
|
progress: false,
|
|
hash: true,
|
|
hideCursorTime: 2000,
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|