# Reveal

Reveal-md uses revel.js under the hood but it allows your slide as mark-down and automatically converts them into html which is revel.js supports.

# Installation

npm i reveal-md
1

# Run

"scripts": {
    "start": "reveal-md --theme night --highlightTheme hybrid --port 1337 --css styles.css README.md"
  }
1
2
3

# style.css

.vue-logo {
  height: 120px !important;
  width: auto !important;
  margin-bottom: -5px !important;
}

.vue-logo-small {
  height: 40px !important;
  width: auto !important;
  margin-bottom: -5px !important;
}

img {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
}

/* code {
  font-size: 2em !important;
  line-height: 2em !important;
} */

.emoji {
  font-size: 1.5em;
}

.dark-bg {
  background: rgba(0, 0, 0, 0.6);
}

small {
  font-size: 0.5em !important;
}

.mt {
  margin-top: 1em !important;
}

.van-video {
  width: 30%;
}
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

# Example

  • --- : New Slides

documentation (opens new window)

Last Updated: 29/12/2021 9:58:12 am