reveal-jekyll 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +94 -0
- data/_includes/basements.html +7 -0
- data/_includes/head.html +39 -0
- data/_includes/reveal.html +25 -0
- data/_layouts/presentation.html +26 -0
- data/_layouts/raw.html +20 -0
- data/assets/css/print/paper.css +203 -0
- data/assets/css/print/pdf.css +164 -0
- data/assets/css/reset.css +30 -0
- data/assets/css/reveal.css +1598 -0
- data/assets/css/reveal.scss +1768 -0
- data/assets/css/rouge-highlight/monokai.css +210 -0
- data/assets/css/theme/README.md +21 -0
- data/assets/css/theme/beige.css +277 -0
- data/assets/css/theme/black.css +273 -0
- data/assets/css/theme/blood.css +296 -0
- data/assets/css/theme/league.css +279 -0
- data/assets/css/theme/moon.css +277 -0
- data/assets/css/theme/night.css +271 -0
- data/assets/css/theme/serif.css +273 -0
- data/assets/css/theme/simple.css +276 -0
- data/assets/css/theme/sky.css +280 -0
- data/assets/css/theme/solarized.css +277 -0
- data/assets/css/theme/source/beige.scss +39 -0
- data/assets/css/theme/source/black.scss +49 -0
- data/assets/css/theme/source/blood.scss +78 -0
- data/assets/css/theme/source/league.scss +34 -0
- data/assets/css/theme/source/moon.scss +57 -0
- data/assets/css/theme/source/night.scss +34 -0
- data/assets/css/theme/source/serif.scss +35 -0
- data/assets/css/theme/source/simple.scss +43 -0
- data/assets/css/theme/source/sky.scss +46 -0
- data/assets/css/theme/source/solarized.scss +63 -0
- data/assets/css/theme/source/white.scss +49 -0
- data/assets/css/theme/template/mixins.scss +29 -0
- data/assets/css/theme/template/settings.scss +45 -0
- data/assets/css/theme/template/theme.scss +325 -0
- data/assets/css/theme/white.css +273 -0
- data/assets/js/reveal.js +6028 -0
- data/assets/lib/css/monokai.css +71 -0
- data/assets/lib/css/zenburn.css +80 -0
- data/assets/lib/font/Pacifico/Pacifico.eot +0 -0
- data/assets/lib/font/Pacifico/Pacifico.svg +10833 -0
- data/assets/lib/font/Pacifico/Pacifico.ttf +0 -0
- data/assets/lib/font/Pacifico/Pacifico.woff +0 -0
- data/assets/lib/font/Pacifico/Pacifico.woff2 +0 -0
- data/assets/lib/font/Pacifico/original-pacifico-regular.ttf +0 -0
- data/assets/lib/font/fontawesome/FontAwesome.otf +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.eot +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.svg +2671 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.ttf +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.woff +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.woff2 +0 -0
- data/assets/lib/font/league-gothic/LICENSE +2 -0
- data/assets/lib/font/league-gothic/league-gothic.css +10 -0
- data/assets/lib/font/league-gothic/league-gothic.eot +0 -0
- data/assets/lib/font/league-gothic/league-gothic.ttf +0 -0
- data/assets/lib/font/league-gothic/league-gothic.woff +0 -0
- data/assets/lib/font/source-sans-pro/LICENSE +45 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro.css +39 -0
- data/assets/lib/js/html5shiv.js +7 -0
- data/assets/lib/js/promise.js +2 -0
- data/assets/plugin/highlight/highlight.js +168 -0
- data/assets/plugin/markdown/example.html +134 -0
- data/assets/plugin/markdown/example.md +36 -0
- data/assets/plugin/markdown/markdown.js +446 -0
- data/assets/plugin/markdown/marked.js +6 -0
- data/assets/plugin/math/math.js +92 -0
- data/assets/plugin/multiplex/client.js +13 -0
- data/assets/plugin/multiplex/index.js +64 -0
- data/assets/plugin/multiplex/master.js +34 -0
- data/assets/plugin/multiplex/package.json +19 -0
- data/assets/plugin/notes-server/client.js +65 -0
- data/assets/plugin/notes-server/index.js +69 -0
- data/assets/plugin/notes-server/notes.html +585 -0
- data/assets/plugin/notes/notes.html +834 -0
- data/assets/plugin/notes/notes.js +178 -0
- data/assets/plugin/print-pdf/print-pdf.js +67 -0
- data/assets/plugin/search/search.js +206 -0
- data/assets/plugin/zoom-js/zoom.js +277 -0
- metadata +180 -0
@@ -0,0 +1,277 @@
|
|
1
|
+
// Custom reveal.js integration
|
2
|
+
var RevealZoom = (function(){
|
3
|
+
|
4
|
+
return {
|
5
|
+
init: function() {
|
6
|
+
|
7
|
+
Reveal.getRevealElement().addEventListener( 'mousedown', function( event ) {
|
8
|
+
var defaultModifier = /Linux/.test( window.navigator.platform ) ? 'ctrl' : 'alt';
|
9
|
+
|
10
|
+
var modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : defaultModifier ) + 'Key';
|
11
|
+
var zoomLevel = ( Reveal.getConfig().zoomLevel ? Reveal.getConfig().zoomLevel : 2 );
|
12
|
+
|
13
|
+
if( event[ modifier ] && !Reveal.isOverview() ) {
|
14
|
+
event.preventDefault();
|
15
|
+
|
16
|
+
zoom.to({
|
17
|
+
x: event.clientX,
|
18
|
+
y: event.clientY,
|
19
|
+
scale: zoomLevel,
|
20
|
+
pan: false
|
21
|
+
});
|
22
|
+
}
|
23
|
+
} );
|
24
|
+
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
})();
|
29
|
+
|
30
|
+
Reveal.registerPlugin( 'zoom', RevealZoom );
|
31
|
+
|
32
|
+
/*!
|
33
|
+
* zoom.js 0.3 (modified for use with reveal.js)
|
34
|
+
* http://lab.hakim.se/zoom-js
|
35
|
+
* MIT licensed
|
36
|
+
*
|
37
|
+
* Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se
|
38
|
+
*/
|
39
|
+
var zoom = (function(){
|
40
|
+
|
41
|
+
// The current zoom level (scale)
|
42
|
+
var level = 1;
|
43
|
+
|
44
|
+
// The current mouse position, used for panning
|
45
|
+
var mouseX = 0,
|
46
|
+
mouseY = 0;
|
47
|
+
|
48
|
+
// Timeout before pan is activated
|
49
|
+
var panEngageTimeout = -1,
|
50
|
+
panUpdateInterval = -1;
|
51
|
+
|
52
|
+
// Check for transform support so that we can fallback otherwise
|
53
|
+
var supportsTransforms = 'WebkitTransform' in document.body.style ||
|
54
|
+
'MozTransform' in document.body.style ||
|
55
|
+
'msTransform' in document.body.style ||
|
56
|
+
'OTransform' in document.body.style ||
|
57
|
+
'transform' in document.body.style;
|
58
|
+
|
59
|
+
if( supportsTransforms ) {
|
60
|
+
// The easing that will be applied when we zoom in/out
|
61
|
+
document.body.style.transition = 'transform 0.8s ease';
|
62
|
+
document.body.style.OTransition = '-o-transform 0.8s ease';
|
63
|
+
document.body.style.msTransition = '-ms-transform 0.8s ease';
|
64
|
+
document.body.style.MozTransition = '-moz-transform 0.8s ease';
|
65
|
+
document.body.style.WebkitTransition = '-webkit-transform 0.8s ease';
|
66
|
+
}
|
67
|
+
|
68
|
+
// Zoom out if the user hits escape
|
69
|
+
document.addEventListener( 'keyup', function( event ) {
|
70
|
+
if( level !== 1 && event.keyCode === 27 ) {
|
71
|
+
zoom.out();
|
72
|
+
}
|
73
|
+
} );
|
74
|
+
|
75
|
+
// Monitor mouse movement for panning
|
76
|
+
document.addEventListener( 'mousemove', function( event ) {
|
77
|
+
if( level !== 1 ) {
|
78
|
+
mouseX = event.clientX;
|
79
|
+
mouseY = event.clientY;
|
80
|
+
}
|
81
|
+
} );
|
82
|
+
|
83
|
+
/**
|
84
|
+
* Applies the CSS required to zoom in, prefers the use of CSS3
|
85
|
+
* transforms but falls back on zoom for IE.
|
86
|
+
*
|
87
|
+
* @param {Object} rect
|
88
|
+
* @param {Number} scale
|
89
|
+
*/
|
90
|
+
function magnify( rect, scale ) {
|
91
|
+
|
92
|
+
var scrollOffset = getScrollOffset();
|
93
|
+
|
94
|
+
// Ensure a width/height is set
|
95
|
+
rect.width = rect.width || 1;
|
96
|
+
rect.height = rect.height || 1;
|
97
|
+
|
98
|
+
// Center the rect within the zoomed viewport
|
99
|
+
rect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;
|
100
|
+
rect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;
|
101
|
+
|
102
|
+
if( supportsTransforms ) {
|
103
|
+
// Reset
|
104
|
+
if( scale === 1 ) {
|
105
|
+
document.body.style.transform = '';
|
106
|
+
document.body.style.OTransform = '';
|
107
|
+
document.body.style.msTransform = '';
|
108
|
+
document.body.style.MozTransform = '';
|
109
|
+
document.body.style.WebkitTransform = '';
|
110
|
+
}
|
111
|
+
// Scale
|
112
|
+
else {
|
113
|
+
var origin = scrollOffset.x +'px '+ scrollOffset.y +'px',
|
114
|
+
transform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';
|
115
|
+
|
116
|
+
document.body.style.transformOrigin = origin;
|
117
|
+
document.body.style.OTransformOrigin = origin;
|
118
|
+
document.body.style.msTransformOrigin = origin;
|
119
|
+
document.body.style.MozTransformOrigin = origin;
|
120
|
+
document.body.style.WebkitTransformOrigin = origin;
|
121
|
+
|
122
|
+
document.body.style.transform = transform;
|
123
|
+
document.body.style.OTransform = transform;
|
124
|
+
document.body.style.msTransform = transform;
|
125
|
+
document.body.style.MozTransform = transform;
|
126
|
+
document.body.style.WebkitTransform = transform;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
else {
|
130
|
+
// Reset
|
131
|
+
if( scale === 1 ) {
|
132
|
+
document.body.style.position = '';
|
133
|
+
document.body.style.left = '';
|
134
|
+
document.body.style.top = '';
|
135
|
+
document.body.style.width = '';
|
136
|
+
document.body.style.height = '';
|
137
|
+
document.body.style.zoom = '';
|
138
|
+
}
|
139
|
+
// Scale
|
140
|
+
else {
|
141
|
+
document.body.style.position = 'relative';
|
142
|
+
document.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';
|
143
|
+
document.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';
|
144
|
+
document.body.style.width = ( scale * 100 ) + '%';
|
145
|
+
document.body.style.height = ( scale * 100 ) + '%';
|
146
|
+
document.body.style.zoom = scale;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
level = scale;
|
151
|
+
|
152
|
+
if( document.documentElement.classList ) {
|
153
|
+
if( level !== 1 ) {
|
154
|
+
document.documentElement.classList.add( 'zoomed' );
|
155
|
+
}
|
156
|
+
else {
|
157
|
+
document.documentElement.classList.remove( 'zoomed' );
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
162
|
+
/**
|
163
|
+
* Pan the document when the mosue cursor approaches the edges
|
164
|
+
* of the window.
|
165
|
+
*/
|
166
|
+
function pan() {
|
167
|
+
var range = 0.12,
|
168
|
+
rangeX = window.innerWidth * range,
|
169
|
+
rangeY = window.innerHeight * range,
|
170
|
+
scrollOffset = getScrollOffset();
|
171
|
+
|
172
|
+
// Up
|
173
|
+
if( mouseY < rangeY ) {
|
174
|
+
window.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );
|
175
|
+
}
|
176
|
+
// Down
|
177
|
+
else if( mouseY > window.innerHeight - rangeY ) {
|
178
|
+
window.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );
|
179
|
+
}
|
180
|
+
|
181
|
+
// Left
|
182
|
+
if( mouseX < rangeX ) {
|
183
|
+
window.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );
|
184
|
+
}
|
185
|
+
// Right
|
186
|
+
else if( mouseX > window.innerWidth - rangeX ) {
|
187
|
+
window.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
function getScrollOffset() {
|
192
|
+
return {
|
193
|
+
x: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,
|
194
|
+
y: window.scrollY !== undefined ? window.scrollY : window.pageYOffset
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
return {
|
199
|
+
/**
|
200
|
+
* Zooms in on either a rectangle or HTML element.
|
201
|
+
*
|
202
|
+
* @param {Object} options
|
203
|
+
* - element: HTML element to zoom in on
|
204
|
+
* OR
|
205
|
+
* - x/y: coordinates in non-transformed space to zoom in on
|
206
|
+
* - width/height: the portion of the screen to zoom in on
|
207
|
+
* - scale: can be used instead of width/height to explicitly set scale
|
208
|
+
*/
|
209
|
+
to: function( options ) {
|
210
|
+
|
211
|
+
// Due to an implementation limitation we can't zoom in
|
212
|
+
// to another element without zooming out first
|
213
|
+
if( level !== 1 ) {
|
214
|
+
zoom.out();
|
215
|
+
}
|
216
|
+
else {
|
217
|
+
options.x = options.x || 0;
|
218
|
+
options.y = options.y || 0;
|
219
|
+
|
220
|
+
// If an element is set, that takes precedence
|
221
|
+
if( !!options.element ) {
|
222
|
+
// Space around the zoomed in element to leave on screen
|
223
|
+
var padding = 20;
|
224
|
+
var bounds = options.element.getBoundingClientRect();
|
225
|
+
|
226
|
+
options.x = bounds.left - padding;
|
227
|
+
options.y = bounds.top - padding;
|
228
|
+
options.width = bounds.width + ( padding * 2 );
|
229
|
+
options.height = bounds.height + ( padding * 2 );
|
230
|
+
}
|
231
|
+
|
232
|
+
// If width/height values are set, calculate scale from those values
|
233
|
+
if( options.width !== undefined && options.height !== undefined ) {
|
234
|
+
options.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );
|
235
|
+
}
|
236
|
+
|
237
|
+
if( options.scale > 1 ) {
|
238
|
+
options.x *= options.scale;
|
239
|
+
options.y *= options.scale;
|
240
|
+
|
241
|
+
magnify( options, options.scale );
|
242
|
+
|
243
|
+
if( options.pan !== false ) {
|
244
|
+
|
245
|
+
// Wait with engaging panning as it may conflict with the
|
246
|
+
// zoom transition
|
247
|
+
panEngageTimeout = setTimeout( function() {
|
248
|
+
panUpdateInterval = setInterval( pan, 1000 / 60 );
|
249
|
+
}, 800 );
|
250
|
+
|
251
|
+
}
|
252
|
+
}
|
253
|
+
}
|
254
|
+
},
|
255
|
+
|
256
|
+
/**
|
257
|
+
* Resets the document zoom state to its default.
|
258
|
+
*/
|
259
|
+
out: function() {
|
260
|
+
clearTimeout( panEngageTimeout );
|
261
|
+
clearInterval( panUpdateInterval );
|
262
|
+
|
263
|
+
magnify( { x: 0, y: 0 }, 1 );
|
264
|
+
|
265
|
+
level = 1;
|
266
|
+
},
|
267
|
+
|
268
|
+
// Alias
|
269
|
+
magnify: function( options ) { this.to( options ) },
|
270
|
+
reset: function() { this.out() },
|
271
|
+
|
272
|
+
zoomLevel: function() {
|
273
|
+
return level;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
})();
|
metadata
ADDED
@@ -0,0 +1,180 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: reveal-jekyll
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sylhare
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-12-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.5'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '5.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.5'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '5.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: bundler
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.0'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.1.0
|
43
|
+
type: :development
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '2.0'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.1.0
|
53
|
+
description: Reveal.js Web presentation served with jekyll
|
54
|
+
email:
|
55
|
+
- sylhare@outlook.com
|
56
|
+
executables: []
|
57
|
+
extensions: []
|
58
|
+
extra_rdoc_files:
|
59
|
+
- README.md
|
60
|
+
- LICENSE
|
61
|
+
files:
|
62
|
+
- LICENSE
|
63
|
+
- README.md
|
64
|
+
- _includes/basements.html
|
65
|
+
- _includes/head.html
|
66
|
+
- _includes/reveal.html
|
67
|
+
- _layouts/presentation.html
|
68
|
+
- _layouts/raw.html
|
69
|
+
- assets/css/print/paper.css
|
70
|
+
- assets/css/print/pdf.css
|
71
|
+
- assets/css/reset.css
|
72
|
+
- assets/css/reveal.css
|
73
|
+
- assets/css/reveal.scss
|
74
|
+
- assets/css/rouge-highlight/monokai.css
|
75
|
+
- assets/css/theme/README.md
|
76
|
+
- assets/css/theme/beige.css
|
77
|
+
- assets/css/theme/black.css
|
78
|
+
- assets/css/theme/blood.css
|
79
|
+
- assets/css/theme/league.css
|
80
|
+
- assets/css/theme/moon.css
|
81
|
+
- assets/css/theme/night.css
|
82
|
+
- assets/css/theme/serif.css
|
83
|
+
- assets/css/theme/simple.css
|
84
|
+
- assets/css/theme/sky.css
|
85
|
+
- assets/css/theme/solarized.css
|
86
|
+
- assets/css/theme/source/beige.scss
|
87
|
+
- assets/css/theme/source/black.scss
|
88
|
+
- assets/css/theme/source/blood.scss
|
89
|
+
- assets/css/theme/source/league.scss
|
90
|
+
- assets/css/theme/source/moon.scss
|
91
|
+
- assets/css/theme/source/night.scss
|
92
|
+
- assets/css/theme/source/serif.scss
|
93
|
+
- assets/css/theme/source/simple.scss
|
94
|
+
- assets/css/theme/source/sky.scss
|
95
|
+
- assets/css/theme/source/solarized.scss
|
96
|
+
- assets/css/theme/source/white.scss
|
97
|
+
- assets/css/theme/template/mixins.scss
|
98
|
+
- assets/css/theme/template/settings.scss
|
99
|
+
- assets/css/theme/template/theme.scss
|
100
|
+
- assets/css/theme/white.css
|
101
|
+
- assets/js/reveal.js
|
102
|
+
- assets/lib/css/monokai.css
|
103
|
+
- assets/lib/css/zenburn.css
|
104
|
+
- assets/lib/font/Pacifico/Pacifico.eot
|
105
|
+
- assets/lib/font/Pacifico/Pacifico.svg
|
106
|
+
- assets/lib/font/Pacifico/Pacifico.ttf
|
107
|
+
- assets/lib/font/Pacifico/Pacifico.woff
|
108
|
+
- assets/lib/font/Pacifico/Pacifico.woff2
|
109
|
+
- assets/lib/font/Pacifico/original-pacifico-regular.ttf
|
110
|
+
- assets/lib/font/fontawesome/FontAwesome.otf
|
111
|
+
- assets/lib/font/fontawesome/fontawesome-webfont.eot
|
112
|
+
- assets/lib/font/fontawesome/fontawesome-webfont.svg
|
113
|
+
- assets/lib/font/fontawesome/fontawesome-webfont.ttf
|
114
|
+
- assets/lib/font/fontawesome/fontawesome-webfont.woff
|
115
|
+
- assets/lib/font/fontawesome/fontawesome-webfont.woff2
|
116
|
+
- assets/lib/font/league-gothic/LICENSE
|
117
|
+
- assets/lib/font/league-gothic/league-gothic.css
|
118
|
+
- assets/lib/font/league-gothic/league-gothic.eot
|
119
|
+
- assets/lib/font/league-gothic/league-gothic.ttf
|
120
|
+
- assets/lib/font/league-gothic/league-gothic.woff
|
121
|
+
- assets/lib/font/source-sans-pro/LICENSE
|
122
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-italic.eot
|
123
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-italic.ttf
|
124
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-italic.woff
|
125
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-regular.eot
|
126
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-regular.ttf
|
127
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-regular.woff
|
128
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-semibold.eot
|
129
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-semibold.ttf
|
130
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-semibold.woff
|
131
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
|
132
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
|
133
|
+
- assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
|
134
|
+
- assets/lib/font/source-sans-pro/source-sans-pro.css
|
135
|
+
- assets/lib/js/html5shiv.js
|
136
|
+
- assets/lib/js/promise.js
|
137
|
+
- assets/plugin/highlight/highlight.js
|
138
|
+
- assets/plugin/markdown/example.html
|
139
|
+
- assets/plugin/markdown/example.md
|
140
|
+
- assets/plugin/markdown/markdown.js
|
141
|
+
- assets/plugin/markdown/marked.js
|
142
|
+
- assets/plugin/math/math.js
|
143
|
+
- assets/plugin/multiplex/client.js
|
144
|
+
- assets/plugin/multiplex/index.js
|
145
|
+
- assets/plugin/multiplex/master.js
|
146
|
+
- assets/plugin/multiplex/package.json
|
147
|
+
- assets/plugin/notes-server/client.js
|
148
|
+
- assets/plugin/notes-server/index.js
|
149
|
+
- assets/plugin/notes-server/notes.html
|
150
|
+
- assets/plugin/notes/notes.html
|
151
|
+
- assets/plugin/notes/notes.js
|
152
|
+
- assets/plugin/print-pdf/print-pdf.js
|
153
|
+
- assets/plugin/search/search.js
|
154
|
+
- assets/plugin/zoom-js/zoom.js
|
155
|
+
homepage: https://github.com/sylhare/Reveal-Jekyll
|
156
|
+
licenses:
|
157
|
+
- MIT
|
158
|
+
metadata:
|
159
|
+
plugin_type: theme
|
160
|
+
post_install_message:
|
161
|
+
rdoc_options:
|
162
|
+
- "--charset=UTF-8"
|
163
|
+
require_paths:
|
164
|
+
- lib
|
165
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 2.4.0
|
170
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
requirements: []
|
176
|
+
rubygems_version: 3.0.6
|
177
|
+
signing_key:
|
178
|
+
specification_version: 4
|
179
|
+
summary: Reveal.js Web presentation served with jekyll
|
180
|
+
test_files: []
|