You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+54-54Lines changed: 54 additions & 54 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@ reveal.js comes with a broad range of features including [nested slides](https:/
8
8
## Table of contents
9
9
10
10
-[Online Editor](#online-editor)
11
+
-[Installation](#installation)
12
+
-[Basic setup](#basic-setup)
13
+
-[Full setup](#full-setup)
14
+
-[Folder Structure](#folder-structure)
11
15
-[Instructions](#instructions)
12
16
-[Markup](#markup)
13
17
-[Markdown](#markdown)
@@ -48,10 +52,6 @@ reveal.js comes with a broad range of features including [nested slides](https:/
48
52
-[Client presentation](#client-presentation)
49
53
-[Socket.io server](#socketio-server)
50
54
-[MathJax](#mathjax)
51
-
-[Installation](#installation)
52
-
-[Basic setup](#basic-setup)
53
-
-[Full setup](#full-setup)
54
-
-[Folder Structure](#folder-structure)
55
55
-[License](#license)
56
56
57
57
#### More reading
@@ -67,6 +67,56 @@ reveal.js comes with a broad range of features including [nested slides](https:/
67
67
Presentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [https://slides.com](https://slides.com?ref=github).
68
68
69
69
70
+
## Installation
71
+
72
+
The **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.
73
+
74
+
### Basic setup
75
+
76
+
The core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.
77
+
78
+
1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>
79
+
2. Unzip and replace the example contents in index.html with your own
80
+
3. Open index.html in a browser to view it
81
+
82
+
### Full setup
83
+
84
+
Some reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.
85
+
86
+
1. Install [Node.js](http://nodejs.org/) (4.0.0 or later)
1. Serve the presentation and monitor source files for changes
104
+
```sh
105
+
$ npm start
106
+
```
107
+
108
+
1. Open <http://localhost:8000> to view your presentation
109
+
110
+
You can change the port by using `npm start -- --port=8001`.
111
+
112
+
### Folder Structure
113
+
114
+
-**css/** Core styles without which the project does not function
115
+
-**js/** Like above but for JavaScript
116
+
-**plugin/** Components that have been developed as extensions to reveal.js
117
+
-**lib/** All other third party assets (JavaScript, CSS, fonts)
118
+
119
+
70
120
## Instructions
71
121
72
122
### Markup
@@ -1252,56 +1302,6 @@ Reveal.initialize({
1252
1302
Read MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.
1253
1303
1254
1304
1255
-
## Installation
1256
-
1257
-
The **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.
1258
-
1259
-
### Basic setup
1260
-
1261
-
The core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.
1262
-
1263
-
1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>
1264
-
2. Unzip and replace the example contents in index.html with your own
1265
-
3. Open index.html in a browser to view it
1266
-
1267
-
### Full setup
1268
-
1269
-
Some reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.
1270
-
1271
-
1. Install [Node.js](http://nodejs.org/) (4.0.0 or later)
0 commit comments