-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
88 lines (63 loc) · 1.98 KB
/
template.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
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/styles/default.min.css"
integrity="sha512-hasIneQUHlh06VNBe7f6ZcHmeRTLIaQWFd43YriJ0UND19bvYRauxthDg8E4eVNPm9bRUhr5JGeqH7FRFXQu5g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="index.css">
<!-- <link rel="stylesheet" href="theme.css"> -->
</head>
<body>
<textarea id="content">
# title
Some body text.
```sql
SELECT * FROM table LIMIT 10
```
Some additional text
```text
A plain text block
```
---
# Slide 2
* More content
* But this time in a bullet list
```javascript
console.log("another code block");
```
Content not in bullets.
And --- a triple dash in a line.
---
# third slide
please help
```asdf
typescript good
```
"quote testing"
???
presenter notes
**with some markup**
---
slide after notes
---
</textarea>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/markdown-it/12.3.2/markdown-it.min.js"
integrity="sha512-TIDbN32lXOg2Mw1VcnKrQLZgfALryJogWCu/NHWtlMCR1jget+mOwMtdehBBZz2f9PKeK2AQPwVxkbl4u/1H5g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"
integrity="sha512-yUUc0qWm2rhM7X0EFe82LNnv2moqArj5nro/w1bi05A09hRVeIZbN6jlMoyu0+4I/Bu4Ck/85JQIU82T82M28w=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="index.js"></script>
<script>
var slideshow = createSlideshow({
// what should separate slides? default is `\n---\n`
slideSeparator: "\n---\n",
// you can pass in a custom markdown-it renderer here, and we'll just call
// md.render() with your passed-in instance. This allows you to configure
// your markdown-it plugins, your hljs configuration, etc.
markdownRenderer: false
});
</script>
</html>