Generate web slides from Markdoc
1# Hello There
2
3This is my presentation
4
5---
6
7## Yes
8
9- A presentation
10- It has slides
11- It has bullets!
12
13---
14
15## Some code
16
17```typescript
18// And here's some code
19
20function hello() {
21 return "hello"
22}
23
24console.log("hello") // Prints "hello"
25```
26
27---
28
29## And a diagram
30
31```mermaid
32flowchart LR
33 Hello --> World
34```
35
36---
37
38## Thank You
39