slide_hero 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/Guardfile +28 -0
- data/LICENSE.txt +22 -0
- data/README.md +161 -0
- data/Rakefile +9 -0
- data/bin/slidehero +37 -0
- data/config.ru +14 -0
- data/lib/slide_hero/code.rb +16 -0
- data/lib/slide_hero/dsl.rb +10 -0
- data/lib/slide_hero/grouped_slides.rb +21 -0
- data/lib/slide_hero/list.rb +29 -0
- data/lib/slide_hero/list_point.rb +26 -0
- data/lib/slide_hero/point.rb +27 -0
- data/lib/slide_hero/presentation.rb +36 -0
- data/lib/slide_hero/slide.rb +47 -0
- data/lib/slide_hero/version.rb +3 -0
- data/lib/slide_hero/views/_footer.html.erb +0 -0
- data/lib/slide_hero/views/_header.html.erb +0 -0
- data/lib/slide_hero/views/code.html.erb +3 -0
- data/lib/slide_hero/views/empty.html +12 -0
- data/lib/slide_hero/views/grouped_slides.html.erb +5 -0
- data/lib/slide_hero/views/layout.html.erb +54 -0
- data/lib/slide_hero/views/ordered_list.html.erb +5 -0
- data/lib/slide_hero/views/slide.html.erb +6 -0
- data/lib/slide_hero/views/unordered_list.html.erb +5 -0
- data/lib/slide_hero.rb +15 -0
- data/slide_hero.gemspec +29 -0
- data/templates/new_presentation.tt +11 -0
- data/test/fixtures/testclass.rb +5 -0
- data/test/minitest_helper.rb +18 -0
- data/test/slide_hero/code_spec.rb +29 -0
- data/test/slide_hero/dsl_spec.rb +27 -0
- data/test/slide_hero/grouped_slides_spec.rb +29 -0
- data/test/slide_hero/list_point_spec.rb +34 -0
- data/test/slide_hero/list_spec.rb +49 -0
- data/test/slide_hero/point_spec.rb +25 -0
- data/test/slide_hero/presentation_spec.rb +56 -0
- data/test/slide_hero/slide_spec.rb +147 -0
- data/test/slide_hero_spec.rb +15 -0
- data/vendor/reveal.js/.gitignore +6 -0
- data/vendor/reveal.js/.travis.yml +5 -0
- data/vendor/reveal.js/Gruntfile.js +132 -0
- data/vendor/reveal.js/LICENSE +19 -0
- data/vendor/reveal.js/README.md +798 -0
- data/vendor/reveal.js/css/print/paper.css +176 -0
- data/vendor/reveal.js/css/print/pdf.css +190 -0
- data/vendor/reveal.js/css/reveal.css +1649 -0
- data/vendor/reveal.js/css/reveal.min.css +7 -0
- data/vendor/reveal.js/css/theme/README.md +23 -0
- data/vendor/reveal.js/css/theme/beige.css +142 -0
- data/vendor/reveal.js/css/theme/default.css +142 -0
- data/vendor/reveal.js/css/theme/moon.css +142 -0
- data/vendor/reveal.js/css/theme/night.css +130 -0
- data/vendor/reveal.js/css/theme/serif.css +132 -0
- data/vendor/reveal.js/css/theme/simple.css +132 -0
- data/vendor/reveal.js/css/theme/sky.css +139 -0
- data/vendor/reveal.js/css/theme/solarized.css +142 -0
- data/vendor/reveal.js/css/theme/source/beige.scss +50 -0
- data/vendor/reveal.js/css/theme/source/default.scss +42 -0
- data/vendor/reveal.js/css/theme/source/moon.scss +68 -0
- data/vendor/reveal.js/css/theme/source/night.scss +35 -0
- data/vendor/reveal.js/css/theme/source/serif.scss +35 -0
- data/vendor/reveal.js/css/theme/source/simple.scss +38 -0
- data/vendor/reveal.js/css/theme/source/sky.scss +46 -0
- data/vendor/reveal.js/css/theme/source/solarized.scss +74 -0
- data/vendor/reveal.js/css/theme/template/mixins.scss +29 -0
- data/vendor/reveal.js/css/theme/template/settings.scss +34 -0
- data/vendor/reveal.js/css/theme/template/theme.scss +163 -0
- data/vendor/reveal.js/examples/assets/image1.png +0 -0
- data/vendor/reveal.js/examples/assets/image2.png +0 -0
- data/vendor/reveal.js/examples/barebones.html +42 -0
- data/vendor/reveal.js/examples/embedded-media.html +49 -0
- data/vendor/reveal.js/examples/math.html +185 -0
- data/vendor/reveal.js/examples/slide-backgrounds.html +101 -0
- data/vendor/reveal.js/js/reveal.js +2788 -0
- data/vendor/reveal.js/js/reveal.min.js +8 -0
- data/vendor/reveal.js/lib/css/zenburn.css +115 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.eot +0 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.svg +230 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.ttf +0 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.woff +0 -0
- data/vendor/reveal.js/lib/font/league_gothic_license +2 -0
- data/vendor/reveal.js/lib/js/classList.js +2 -0
- data/vendor/reveal.js/lib/js/head.min.js +8 -0
- data/vendor/reveal.js/lib/js/html5shiv.js +7 -0
- data/vendor/reveal.js/package.json +45 -0
- data/vendor/reveal.js/plugin/highlight/highlight.js +31 -0
- data/vendor/reveal.js/plugin/leap/leap.js +157 -0
- data/vendor/reveal.js/plugin/markdown/example.html +98 -0
- data/vendor/reveal.js/plugin/markdown/example.md +31 -0
- data/vendor/reveal.js/plugin/markdown/markdown.js +220 -0
- data/vendor/reveal.js/plugin/markdown/marked.js +37 -0
- data/vendor/reveal.js/plugin/math/math.js +64 -0
- data/vendor/reveal.js/plugin/multiplex/client.js +13 -0
- data/vendor/reveal.js/plugin/multiplex/index.js +56 -0
- data/vendor/reveal.js/plugin/multiplex/master.js +50 -0
- data/vendor/reveal.js/plugin/notes/notes.html +259 -0
- data/vendor/reveal.js/plugin/notes/notes.js +78 -0
- data/vendor/reveal.js/plugin/notes-server/client.js +57 -0
- data/vendor/reveal.js/plugin/notes-server/index.js +59 -0
- data/vendor/reveal.js/plugin/notes-server/notes.html +142 -0
- data/vendor/reveal.js/plugin/postmessage/example.html +39 -0
- data/vendor/reveal.js/plugin/postmessage/postmessage.js +42 -0
- data/vendor/reveal.js/plugin/print-pdf/print-pdf.js +44 -0
- data/vendor/reveal.js/plugin/remotes/remotes.js +39 -0
- data/vendor/reveal.js/plugin/search/search.js +196 -0
- data/vendor/reveal.js/plugin/zoom-js/zoom.js +256 -0
- metadata +277 -0
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
// From https://gist.github.com/1343518
|
|
2
|
+
// Modified by Hakim to handle Markdown indented with tabs
|
|
3
|
+
(function(){
|
|
4
|
+
|
|
5
|
+
if( typeof marked === 'undefined' ) {
|
|
6
|
+
throw 'The reveal.js Markdown plugin requires marked to be loaded';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
if (typeof hljs !== 'undefined') {
|
|
10
|
+
marked.setOptions({
|
|
11
|
+
highlight: function (lang, code) {
|
|
12
|
+
return hljs.highlightAuto(lang, code).value;
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
var stripLeadingWhitespace = function(section) {
|
|
18
|
+
|
|
19
|
+
var template = section.querySelector( 'script' );
|
|
20
|
+
|
|
21
|
+
// strip leading whitespace so it isn't evaluated as code
|
|
22
|
+
var text = ( template || section ).textContent;
|
|
23
|
+
|
|
24
|
+
var leadingWs = text.match(/^\n?(\s*)/)[1].length,
|
|
25
|
+
leadingTabs = text.match(/^\n?(\t*)/)[1].length;
|
|
26
|
+
|
|
27
|
+
if( leadingTabs > 0 ) {
|
|
28
|
+
text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' );
|
|
29
|
+
}
|
|
30
|
+
else if( leadingWs > 1 ) {
|
|
31
|
+
text = text.replace( new RegExp('\\n? {' + leadingWs + '}','g'), '\n' );
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return text;
|
|
35
|
+
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
var twrap = function(el) {
|
|
39
|
+
var content = el.content || el;
|
|
40
|
+
content += el.asideContent ? ('<aside class="notes" data-markdown>' + el.asideContent + '</aside>') : '';
|
|
41
|
+
return '<script type="text/template">' + content + '</script>';
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
var getForwardedAttributes = function(section) {
|
|
45
|
+
var attributes = section.attributes;
|
|
46
|
+
var result = [];
|
|
47
|
+
|
|
48
|
+
for( var i = 0, len = attributes.length; i < len; i++ ) {
|
|
49
|
+
var name = attributes[i].name,
|
|
50
|
+
value = attributes[i].value;
|
|
51
|
+
|
|
52
|
+
// disregard attributes that are used for markdown loading/parsing
|
|
53
|
+
if( /data\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;
|
|
54
|
+
|
|
55
|
+
if( value ) {
|
|
56
|
+
result.push( name + '=' + value );
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
result.push( name );
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return result.join( ' ' );
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
var slidifyMarkdown = function(markdown, separator, vertical, notes, attributes) {
|
|
67
|
+
|
|
68
|
+
separator = separator || '^\n---\n$';
|
|
69
|
+
notes = notes || 'note:';
|
|
70
|
+
|
|
71
|
+
var separatorRegex = new RegExp( separator + ( vertical ? '|' + vertical : '' ), 'mg' ),
|
|
72
|
+
horizontalSeparatorRegex = new RegExp( separator ),
|
|
73
|
+
notesSeparatorRegex = new RegExp( notes, 'mgi' ),
|
|
74
|
+
matches,
|
|
75
|
+
noteMatch,
|
|
76
|
+
lastIndex = 0,
|
|
77
|
+
isHorizontal,
|
|
78
|
+
wasHorizontal = true,
|
|
79
|
+
content,
|
|
80
|
+
asideContent,
|
|
81
|
+
slide,
|
|
82
|
+
sectionStack = [],
|
|
83
|
+
markdownSections = '';
|
|
84
|
+
|
|
85
|
+
// iterate until all blocks between separators are stacked up
|
|
86
|
+
while( matches = separatorRegex.exec( markdown ) ) {
|
|
87
|
+
asideContent = null;
|
|
88
|
+
|
|
89
|
+
// determine direction (horizontal by default)
|
|
90
|
+
isHorizontal = horizontalSeparatorRegex.test( matches[0] );
|
|
91
|
+
|
|
92
|
+
if( !isHorizontal && wasHorizontal ) {
|
|
93
|
+
// create vertical stack
|
|
94
|
+
sectionStack.push( [] );
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// pluck slide content from markdown input
|
|
98
|
+
content = markdown.substring( lastIndex, matches.index );
|
|
99
|
+
noteMatch = content.split( notesSeparatorRegex );
|
|
100
|
+
|
|
101
|
+
if( noteMatch.length === 2 ) {
|
|
102
|
+
content = noteMatch[0];
|
|
103
|
+
asideContent = noteMatch[1].trim();
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
slide = {
|
|
107
|
+
content: content,
|
|
108
|
+
asideContent: asideContent || ""
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
if( isHorizontal && wasHorizontal ) {
|
|
112
|
+
// add to horizontal stack
|
|
113
|
+
sectionStack.push(slide);
|
|
114
|
+
} else {
|
|
115
|
+
// add to vertical stack
|
|
116
|
+
sectionStack[sectionStack.length-1].push(slide);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
lastIndex = separatorRegex.lastIndex;
|
|
120
|
+
wasHorizontal = isHorizontal;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// add the remaining slide
|
|
124
|
+
(wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1]).push(markdown.substring(lastIndex));
|
|
125
|
+
|
|
126
|
+
// flatten the hierarchical stack, and insert <section data-markdown> tags
|
|
127
|
+
for( var k = 0, klen = sectionStack.length; k < klen; k++ ) {
|
|
128
|
+
// vertical
|
|
129
|
+
if( sectionStack[k].propertyIsEnumerable(length) && typeof sectionStack[k].splice === 'function' ) {
|
|
130
|
+
markdownSections += '<section '+ attributes +'>' +
|
|
131
|
+
'<section data-markdown>' + sectionStack[k].map(twrap).join('</section><section data-markdown>') + '</section>' +
|
|
132
|
+
'</section>';
|
|
133
|
+
} else {
|
|
134
|
+
markdownSections += '<section '+ attributes +' data-markdown>' + twrap( sectionStack[k] ) + '</section>';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return markdownSections;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
var querySlidingMarkdown = function() {
|
|
142
|
+
|
|
143
|
+
var sections = document.querySelectorAll( '[data-markdown]'),
|
|
144
|
+
section;
|
|
145
|
+
|
|
146
|
+
for( var j = 0, jlen = sections.length; j < jlen; j++ ) {
|
|
147
|
+
|
|
148
|
+
section = sections[j];
|
|
149
|
+
|
|
150
|
+
if( section.getAttribute('data-markdown').length ) {
|
|
151
|
+
|
|
152
|
+
var xhr = new XMLHttpRequest(),
|
|
153
|
+
url = section.getAttribute('data-markdown');
|
|
154
|
+
|
|
155
|
+
datacharset = section.getAttribute('data-charset');
|
|
156
|
+
// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes
|
|
157
|
+
if (datacharset != null && datacharset != '') {
|
|
158
|
+
xhr.overrideMimeType('text/html; charset=' + datacharset);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
xhr.onreadystatechange = function () {
|
|
162
|
+
if( xhr.readyState === 4 ) {
|
|
163
|
+
if (xhr.status >= 200 && xhr.status < 300) {
|
|
164
|
+
section.outerHTML = slidifyMarkdown( xhr.responseText, section.getAttribute('data-separator'), section.getAttribute('data-vertical'), section.getAttribute('data-notes'), getForwardedAttributes(section) );
|
|
165
|
+
} else {
|
|
166
|
+
section.outerHTML = '<section data-state="alert">ERROR: The attempt to fetch ' + url + ' failed with the HTTP status ' + xhr.status +
|
|
167
|
+
'. Check your browser\'s JavaScript console for more details.' +
|
|
168
|
+
'<p>Remember that you need to serve the presentation HTML from a HTTP server and the Markdown file must be there too.</p></section>';
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
xhr.open('GET', url, false);
|
|
174
|
+
try {
|
|
175
|
+
xhr.send();
|
|
176
|
+
} catch (e) {
|
|
177
|
+
alert('Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
} else if( section.getAttribute('data-separator') ) {
|
|
181
|
+
|
|
182
|
+
var markdown = stripLeadingWhitespace(section);
|
|
183
|
+
section.outerHTML = slidifyMarkdown( markdown, section.getAttribute('data-separator'), section.getAttribute('data-vertical'), section.getAttribute('data-notes'), getForwardedAttributes(section) );
|
|
184
|
+
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
var queryMarkdownSlides = function() {
|
|
191
|
+
|
|
192
|
+
var sections = document.querySelectorAll( '[data-markdown]');
|
|
193
|
+
|
|
194
|
+
for( var j = 0, jlen = sections.length; j < jlen; j++ ) {
|
|
195
|
+
|
|
196
|
+
makeHtml(sections[j]);
|
|
197
|
+
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
var makeHtml = function(section) {
|
|
203
|
+
|
|
204
|
+
var notes = section.querySelector( 'aside.notes' );
|
|
205
|
+
|
|
206
|
+
var markdown = stripLeadingWhitespace(section);
|
|
207
|
+
|
|
208
|
+
section.innerHTML = marked(markdown);
|
|
209
|
+
|
|
210
|
+
if( notes ) {
|
|
211
|
+
section.appendChild( notes );
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
querySlidingMarkdown();
|
|
217
|
+
|
|
218
|
+
queryMarkdownSlides();
|
|
219
|
+
|
|
220
|
+
})();
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* marked - a markdown parser
|
|
3
|
+
* Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed)
|
|
4
|
+
* https://github.com/chjj/marked
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
(function(){var block={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:noop,hr:/^( *[-*_]){3,} *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,nptable:noop,lheading:/^([^\n]+)\n *(=|-){3,} *\n*/,blockquote:/^( *>[^\n]+(\n[^\n]+)*\n*)+/,list:/^( *)(bull) [\s\S]+?(?:hr|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment|closed|closing) *(?:\n{2,}|\s*$)/,def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,table:noop,paragraph:/^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
|
|
8
|
+
text:/^[^\n]+/};block.bullet=/(?:[*+-]|\d+\.)/;block.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;block.item=replace(block.item,"gm")(/bull/g,block.bullet)();block.list=replace(block.list)(/bull/g,block.bullet)("hr",/\n+(?=(?: *[-*_]){3,} *(?:\n+|$))/)();block._tag="(?!(?:"+"a|em|strong|small|s|cite|q|dfn|abbr|data|time|code"+"|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo"+"|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|@)\\b";block.html=replace(block.html)("comment",/\x3c!--[\s\S]*?--\x3e/)("closed",
|
|
9
|
+
/<(tag)[\s\S]+?<\/\1>/)("closing",/<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)(/tag/g,block._tag)();block.paragraph=replace(block.paragraph)("hr",block.hr)("heading",block.heading)("lheading",block.lheading)("blockquote",block.blockquote)("tag","<"+block._tag)("def",block.def)();block.normal=merge({},block);block.gfm=merge({},block.normal,{fences:/^ *(`{3,}|~{3,}) *(\S+)? *\n([\s\S]+?)\s*\1 *(?:\n+|$)/,paragraph:/^/});block.gfm.paragraph=replace(block.paragraph)("(?!","(?!"+block.gfm.fences.source.replace("\\1",
|
|
10
|
+
"\\2")+"|")();block.tables=merge({},block.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/});function Lexer(options){this.tokens=[];this.tokens.links={};this.options=options||marked.defaults;this.rules=block.normal;if(this.options.gfm)if(this.options.tables)this.rules=block.tables;else this.rules=block.gfm}Lexer.rules=block;Lexer.lex=function(src,options){var lexer=new Lexer(options);return lexer.lex(src)};
|
|
11
|
+
Lexer.prototype.lex=function(src){src=src.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n");return this.token(src,true)};Lexer.prototype.token=function(src,top){var src=src.replace(/^ +$/gm,""),next,loose,cap,bull,b,item,space,i,l;while(src){if(cap=this.rules.newline.exec(src)){src=src.substring(cap[0].length);if(cap[0].length>1)this.tokens.push({type:"space"})}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);cap=cap[0].replace(/^ {4}/gm,
|
|
12
|
+
"");this.tokens.push({type:"code",text:!this.options.pedantic?cap.replace(/\n+$/,""):cap});continue}if(cap=this.rules.fences.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"code",lang:cap[2],text:cap[3]});continue}if(cap=this.rules.heading.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[1].length,text:cap[2]});continue}if(top&&(cap=this.rules.nptable.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,
|
|
13
|
+
"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/\n$/,"").split("\n")};for(i=0;i<item.align.length;i++)if(/^ *-+: *$/.test(item.align[i]))item.align[i]="right";else if(/^ *:-+: *$/.test(item.align[i]))item.align[i]="center";else if(/^ *:-+ *$/.test(item.align[i]))item.align[i]="left";else item.align[i]=null;for(i=0;i<item.cells.length;i++)item.cells[i]=item.cells[i].split(/ *\| */);this.tokens.push(item);continue}if(cap=this.rules.lheading.exec(src)){src=
|
|
14
|
+
src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[2]==="="?1:2,text:cap[1]});continue}if(cap=this.rules.hr.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"hr"});continue}if(cap=this.rules.blockquote.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"blockquote_start"});cap=cap[0].replace(/^ *> ?/gm,"");this.token(cap,top);this.tokens.push({type:"blockquote_end"});continue}if(cap=this.rules.list.exec(src)){src=src.substring(cap[0].length);
|
|
15
|
+
bull=cap[2];this.tokens.push({type:"list_start",ordered:bull.length>1});cap=cap[0].match(this.rules.item);next=false;l=cap.length;i=0;for(;i<l;i++){item=cap[i];space=item.length;item=item.replace(/^ *([*+-]|\d+\.) +/,"");if(~item.indexOf("\n ")){space-=item.length;item=!this.options.pedantic?item.replace(new RegExp("^ {1,"+space+"}","gm"),""):item.replace(/^ {1,4}/gm,"")}if(this.options.smartLists&&i!==l-1){b=block.bullet.exec(cap[i+1])[0];if(bull!==b&&!(bull.length>1&&b.length>1)){src=cap.slice(i+
|
|
16
|
+
1).join("\n")+src;i=l-1}}loose=next||/\n\n(?!\s*$)/.test(item);if(i!==l-1){next=item[item.length-1]==="\n";if(!loose)loose=next}this.tokens.push({type:loose?"loose_item_start":"list_item_start"});this.token(item,false);this.tokens.push({type:"list_item_end"})}this.tokens.push({type:"list_end"});continue}if(cap=this.rules.html.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:cap[1]==="pre"||cap[1]==="script",text:cap[0]});continue}if(top&&
|
|
17
|
+
(cap=this.rules.def.exec(src))){src=src.substring(cap[0].length);this.tokens.links[cap[1].toLowerCase()]={href:cap[2],title:cap[3]};continue}if(top&&(cap=this.rules.table.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/(?: *\| *)?\n$/,"").split("\n")};for(i=0;i<item.align.length;i++)if(/^ *-+: *$/.test(item.align[i]))item.align[i]="right";else if(/^ *:-+: *$/.test(item.align[i]))item.align[i]=
|
|
18
|
+
"center";else if(/^ *:-+ *$/.test(item.align[i]))item.align[i]="left";else item.align[i]=null;for(i=0;i<item.cells.length;i++)item.cells[i]=item.cells[i].replace(/^ *\| *| *\| *$/g,"").split(/ *\| */);this.tokens.push(item);continue}if(top&&(cap=this.rules.paragraph.exec(src))){src=src.substring(cap[0].length);this.tokens.push({type:"paragraph",text:cap[1][cap[1].length-1]==="\n"?cap[1].slice(0,-1):cap[1]});continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"text",
|
|
19
|
+
text:cap[0]});continue}if(src)throw new Error("Infinite loop on byte: "+src.charCodeAt(0));}return this.tokens};var inline={escape:/^\\([\\`*{}\[\]()#+\-.!_>])/,autolink:/^<([^ >]+(@|:\/)[^ >]+)>/,url:noop,tag:/^\x3c!--[\s\S]*?--\x3e|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,strong:/^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^\b_((?:__|[\s\S])+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
|
|
20
|
+
code:/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:noop,text:/^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/};inline._inside=/(?:\[[^\]]*\]|[^\]]|\](?=[^\[]*\]))*/;inline._href=/\s*<?([^\s]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;inline.link=replace(inline.link)("inside",inline._inside)("href",inline._href)();inline.reflink=replace(inline.reflink)("inside",inline._inside)();inline.normal=merge({},inline);inline.pedantic=merge({},inline.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
|
|
21
|
+
em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/});inline.gfm=merge({},inline.normal,{escape:replace(inline.escape)("])","~|])")(),url:/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:replace(inline.text)("]|","~]|")("|","|https?://|")()});inline.breaks=merge({},inline.gfm,{br:replace(inline.br)("{2,}","*")(),text:replace(inline.gfm.text)("{2,}","*")()});function InlineLexer(links,options){this.options=options||marked.defaults;this.links=links;this.rules=inline.normal;
|
|
22
|
+
if(!this.links)throw new Error("Tokens array requires a `links` property.");if(this.options.gfm)if(this.options.breaks)this.rules=inline.breaks;else this.rules=inline.gfm;else if(this.options.pedantic)this.rules=inline.pedantic}InlineLexer.rules=inline;InlineLexer.output=function(src,links,options){var inline=new InlineLexer(links,options);return inline.output(src)};InlineLexer.prototype.output=function(src){var out="",link,text,href,cap;while(src){if(cap=this.rules.escape.exec(src)){src=src.substring(cap[0].length);
|
|
23
|
+
out+=cap[1];continue}if(cap=this.rules.autolink.exec(src)){src=src.substring(cap[0].length);if(cap[2]==="@"){text=cap[1][6]===":"?this.mangle(cap[1].substring(7)):this.mangle(cap[1]);href=this.mangle("mailto:")+text}else{text=escape(cap[1]);href=text}out+='<a href="'+href+'">'+text+"</a>";continue}if(cap=this.rules.url.exec(src)){src=src.substring(cap[0].length);text=escape(cap[1]);href=text;out+='<a href="'+href+'">'+text+"</a>";continue}if(cap=this.rules.tag.exec(src)){src=src.substring(cap[0].length);
|
|
24
|
+
out+=this.options.sanitize?escape(cap[0]):cap[0];continue}if(cap=this.rules.link.exec(src)){src=src.substring(cap[0].length);out+=this.outputLink(cap,{href:cap[2],title:cap[3]});continue}if((cap=this.rules.reflink.exec(src))||(cap=this.rules.nolink.exec(src))){src=src.substring(cap[0].length);link=(cap[2]||cap[1]).replace(/\s+/g," ");link=this.links[link.toLowerCase()];if(!link||!link.href){out+=cap[0][0];src=cap[0].substring(1)+src;continue}out+=this.outputLink(cap,link);continue}if(cap=this.rules.strong.exec(src)){src=
|
|
25
|
+
src.substring(cap[0].length);out+="<strong>"+this.output(cap[2]||cap[1])+"</strong>";continue}if(cap=this.rules.em.exec(src)){src=src.substring(cap[0].length);out+="<em>"+this.output(cap[2]||cap[1])+"</em>";continue}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);out+="<code>"+escape(cap[2],true)+"</code>";continue}if(cap=this.rules.br.exec(src)){src=src.substring(cap[0].length);out+="<br>";continue}if(cap=this.rules.del.exec(src)){src=src.substring(cap[0].length);out+="<del>"+
|
|
26
|
+
this.output(cap[1])+"</del>";continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);out+=escape(cap[0]);continue}if(src)throw new Error("Infinite loop on byte: "+src.charCodeAt(0));}return out};InlineLexer.prototype.outputLink=function(cap,link){if(cap[0][0]!=="!")return'<a href="'+escape(link.href)+'"'+(link.title?' title="'+escape(link.title)+'"':"")+">"+this.output(cap[1])+"</a>";else return'<img src="'+escape(link.href)+'" alt="'+escape(cap[1])+'"'+(link.title?' title="'+
|
|
27
|
+
escape(link.title)+'"':"")+">"};InlineLexer.prototype.smartypants=function(text){if(!this.options.smartypants)return text;return text.replace(/--/g,"\u2014").replace(/'([^']*)'/g,"\u2018$1\u2019").replace(/"([^"]*)"/g,"\u201c$1\u201d").replace(/\.{3}/g,"\u2026")};InlineLexer.prototype.mangle=function(text){var out="",l=text.length,i=0,ch;for(;i<l;i++){ch=text.charCodeAt(i);if(Math.random()>0.5)ch="x"+ch.toString(16);out+="&#"+ch+";"}return out};function Parser(options){this.tokens=[];this.token=null;
|
|
28
|
+
this.options=options||marked.defaults}Parser.parse=function(src,options){var parser=new Parser(options);return parser.parse(src)};Parser.prototype.parse=function(src){this.inline=new InlineLexer(src.links,this.options);this.tokens=src.reverse();var out="";while(this.next())out+=this.tok();return out};Parser.prototype.next=function(){return this.token=this.tokens.pop()};Parser.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0};Parser.prototype.parseText=function(){var body=this.token.text;
|
|
29
|
+
while(this.peek().type==="text")body+="\n"+this.next().text;return this.inline.output(body)};Parser.prototype.tok=function(){switch(this.token.type){case "space":return"";case "hr":return"<hr>\n";case "heading":return"<h"+this.token.depth+">"+this.inline.output(this.token.text)+"</h"+this.token.depth+">\n";case "code":if(this.options.highlight){var code=this.options.highlight(this.token.text,this.token.lang);if(code!=null&&code!==this.token.text){this.token.escaped=true;this.token.text=code}}if(!this.token.escaped)this.token.text=
|
|
30
|
+
escape(this.token.text,true);return"<pre><code"+(this.token.lang?' class="'+this.options.langPrefix+this.token.lang+'"':"")+">"+this.token.text+"</code></pre>\n";case "table":var body="",heading,i,row,cell,j;body+="<thead>\n<tr>\n";for(i=0;i<this.token.header.length;i++){heading=this.inline.output(this.token.header[i]);body+=this.token.align[i]?'<th align="'+this.token.align[i]+'">'+heading+"</th>\n":"<th>"+heading+"</th>\n"}body+="</tr>\n</thead>\n";body+="<tbody>\n";for(i=0;i<this.token.cells.length;i++){row=
|
|
31
|
+
this.token.cells[i];body+="<tr>\n";for(j=0;j<row.length;j++){cell=this.inline.output(row[j]);body+=this.token.align[j]?'<td align="'+this.token.align[j]+'">'+cell+"</td>\n":"<td>"+cell+"</td>\n"}body+="</tr>\n"}body+="</tbody>\n";return"<table>\n"+body+"</table>\n";case "blockquote_start":var body="";while(this.next().type!=="blockquote_end")body+=this.tok();return"<blockquote>\n"+body+"</blockquote>\n";case "list_start":var type=this.token.ordered?"ol":"ul",body="";while(this.next().type!=="list_end")body+=
|
|
32
|
+
this.tok();return"<"+type+">\n"+body+"</"+type+">\n";case "list_item_start":var body="";while(this.next().type!=="list_item_end")body+=this.token.type==="text"?this.parseText():this.tok();return"<li>"+body+"</li>\n";case "loose_item_start":var body="";while(this.next().type!=="list_item_end")body+=this.tok();return"<li>"+body+"</li>\n";case "html":return!this.token.pre&&!this.options.pedantic?this.inline.output(this.token.text):this.token.text;case "paragraph":return"<p>"+this.inline.output(this.token.text)+
|
|
33
|
+
"</p>\n";case "text":return"<p>"+this.parseText()+"</p>\n"}};function escape(html,encode){return html.replace(!encode?/&(?!#?\w+;)/g:/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function replace(regex,opt){regex=regex.source;opt=opt||"";return function self(name,val){if(!name)return new RegExp(regex,opt);val=val.source||val;val=val.replace(/(^|[^\[])\^/g,"$1");regex=regex.replace(name,val);return self}}function noop(){}noop.exec=noop;function merge(obj){var i=
|
|
34
|
+
1,target,key;for(;i<arguments.length;i++){target=arguments[i];for(key in target)if(Object.prototype.hasOwnProperty.call(target,key))obj[key]=target[key]}return obj}function marked(src,opt,callback){if(callback||typeof opt==="function"){if(!callback){callback=opt;opt=null}if(opt)opt=merge({},marked.defaults,opt);var tokens=Lexer.lex(tokens,opt),highlight=opt.highlight,pending=0,l=tokens.length,i=0;if(!highlight||highlight.length<3)return callback(null,Parser.parse(tokens,opt));var done=function(){delete opt.highlight;
|
|
35
|
+
var out=Parser.parse(tokens,opt);opt.highlight=highlight;return callback(null,out)};for(;i<l;i++)(function(token){if(token.type!=="code")return;pending++;return highlight(token.text,token.lang,function(err,code){if(code==null||code===token.text)return--pending||done();token.text=code;token.escaped=true;--pending||done()})})(tokens[i]);return}try{if(opt)opt=merge({},marked.defaults,opt);return Parser.parse(Lexer.lex(src,opt),opt)}catch(e){e.message+="\nPlease report this to https://github.com/chjj/marked.";
|
|
36
|
+
if((opt||marked.defaults).silent)return"<p>An error occured:</p><pre>"+escape(e.message+"",true)+"</pre>";throw e;}}marked.options=marked.setOptions=function(opt){merge(marked.defaults,opt);return marked};marked.defaults={gfm:true,tables:true,breaks:false,pedantic:false,sanitize:false,smartLists:false,silent:false,highlight:null,langPrefix:""};marked.Parser=Parser;marked.parser=Parser.parse;marked.Lexer=Lexer;marked.lexer=Lexer.lex;marked.InlineLexer=InlineLexer;marked.inlineLexer=InlineLexer.output;
|
|
37
|
+
marked.parse=marked;if(typeof exports==="object")module.exports=marked;else if(typeof define==="function"&&define.amd)define(function(){return marked});else this.marked=marked}).call(function(){return this||(typeof window!=="undefined"?window:global)}());
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A plugin which enables rendering of math equations inside
|
|
3
|
+
* of reveal.js slides. Essentially a thin wrapper for MathJax.
|
|
4
|
+
*
|
|
5
|
+
* @author Hakim El Hattab
|
|
6
|
+
*/
|
|
7
|
+
var RevealMath = window.RevealMath || (function(){
|
|
8
|
+
|
|
9
|
+
var options = Reveal.getConfig().math || {};
|
|
10
|
+
options.mathjax = options.mathjax || 'http://cdn.mathjax.org/mathjax/latest/MathJax.js';
|
|
11
|
+
options.config = options.config || 'TeX-AMS_HTML-full';
|
|
12
|
+
|
|
13
|
+
loadScript( options.mathjax + '?config=' + options.config, function() {
|
|
14
|
+
|
|
15
|
+
MathJax.Hub.Config({
|
|
16
|
+
messageStyle: 'none',
|
|
17
|
+
tex2jax: { inlineMath: [['$','$'],['\\(','\\)']] },
|
|
18
|
+
skipStartupTypeset: true
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
// Typeset followed by an immediate reveal.js layout since
|
|
22
|
+
// the typesetting process could affect slide height
|
|
23
|
+
MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );
|
|
24
|
+
MathJax.Hub.Queue( Reveal.layout );
|
|
25
|
+
|
|
26
|
+
// Reprocess equations in slides when they turn visible
|
|
27
|
+
Reveal.addEventListener( 'slidechanged', function( event ) {
|
|
28
|
+
|
|
29
|
+
MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );
|
|
30
|
+
|
|
31
|
+
} );
|
|
32
|
+
|
|
33
|
+
} );
|
|
34
|
+
|
|
35
|
+
function loadScript( url, callback ) {
|
|
36
|
+
|
|
37
|
+
var head = document.querySelector( 'head' );
|
|
38
|
+
var script = document.createElement( 'script' );
|
|
39
|
+
script.type = 'text/javascript';
|
|
40
|
+
script.src = url;
|
|
41
|
+
|
|
42
|
+
// Wrapper for callback to make sure it only fires once
|
|
43
|
+
var finish = function() {
|
|
44
|
+
if( typeof callback === 'function' ) {
|
|
45
|
+
callback.call();
|
|
46
|
+
callback = null;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
script.onload = finish;
|
|
51
|
+
|
|
52
|
+
// IE
|
|
53
|
+
script.onreadystatechange = function() {
|
|
54
|
+
if ( this.readyState === 'loaded' ) {
|
|
55
|
+
finish();
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Normal browsers
|
|
60
|
+
head.appendChild( script );
|
|
61
|
+
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
})();
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
var multiplex = Reveal.getConfig().multiplex;
|
|
3
|
+
var socketId = multiplex.id;
|
|
4
|
+
var socket = io.connect(multiplex.url);
|
|
5
|
+
|
|
6
|
+
socket.on(multiplex.id, function(data) {
|
|
7
|
+
// ignore data from sockets that aren't ours
|
|
8
|
+
if (data.socketId !== socketId) { return; }
|
|
9
|
+
if( window.location.host === 'localhost:1947' ) return;
|
|
10
|
+
|
|
11
|
+
Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote');
|
|
12
|
+
});
|
|
13
|
+
}());
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
var express = require('express');
|
|
2
|
+
var fs = require('fs');
|
|
3
|
+
var io = require('socket.io');
|
|
4
|
+
var crypto = require('crypto');
|
|
5
|
+
|
|
6
|
+
var app = express.createServer();
|
|
7
|
+
var staticDir = express.static;
|
|
8
|
+
|
|
9
|
+
io = io.listen(app);
|
|
10
|
+
|
|
11
|
+
var opts = {
|
|
12
|
+
port: 1948,
|
|
13
|
+
baseDir : __dirname + '/../../'
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
io.sockets.on('connection', function(socket) {
|
|
17
|
+
socket.on('slidechanged', function(slideData) {
|
|
18
|
+
if (typeof slideData.secret == 'undefined' || slideData.secret == null || slideData.secret === '') return;
|
|
19
|
+
if (createHash(slideData.secret) === slideData.socketId) {
|
|
20
|
+
slideData.secret = null;
|
|
21
|
+
socket.broadcast.emit(slideData.socketId, slideData);
|
|
22
|
+
};
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
app.configure(function() {
|
|
27
|
+
[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {
|
|
28
|
+
app.use('/' + dir, staticDir(opts.baseDir + dir));
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
app.get("/", function(req, res) {
|
|
33
|
+
res.writeHead(200, {'Content-Type': 'text/html'});
|
|
34
|
+
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
app.get("/token", function(req,res) {
|
|
38
|
+
var ts = new Date().getTime();
|
|
39
|
+
var rand = Math.floor(Math.random()*9999999);
|
|
40
|
+
var secret = ts.toString() + rand.toString();
|
|
41
|
+
res.send({secret: secret, socketId: createHash(secret)});
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
var createHash = function(secret) {
|
|
45
|
+
var cipher = crypto.createCipher('blowfish', secret);
|
|
46
|
+
return(cipher.final('hex'));
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
// Actually listen
|
|
50
|
+
app.listen(opts.port || null);
|
|
51
|
+
|
|
52
|
+
var brown = '\033[33m',
|
|
53
|
+
green = '\033[32m',
|
|
54
|
+
reset = '\033[0m';
|
|
55
|
+
|
|
56
|
+
console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset );
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
// don't emit events from inside the previews themselves
|
|
3
|
+
if ( window.location.search.match( /receiver/gi ) ) { return; }
|
|
4
|
+
var multiplex = Reveal.getConfig().multiplex;
|
|
5
|
+
|
|
6
|
+
var socket = io.connect(multiplex.url);
|
|
7
|
+
|
|
8
|
+
var notify = function( slideElement, indexh, indexv, origin ) {
|
|
9
|
+
if( typeof origin === 'undefined' && origin !== 'remote' ) {
|
|
10
|
+
var nextindexh;
|
|
11
|
+
var nextindexv;
|
|
12
|
+
|
|
13
|
+
var fragmentindex = Reveal.getIndices().f;
|
|
14
|
+
if (typeof fragmentindex == 'undefined') {
|
|
15
|
+
fragmentindex = 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') {
|
|
19
|
+
nextindexh = indexh;
|
|
20
|
+
nextindexv = indexv + 1;
|
|
21
|
+
} else {
|
|
22
|
+
nextindexh = indexh + 1;
|
|
23
|
+
nextindexv = 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var slideData = {
|
|
27
|
+
indexh : indexh,
|
|
28
|
+
indexv : indexv,
|
|
29
|
+
indexf : fragmentindex,
|
|
30
|
+
nextindexh : nextindexh,
|
|
31
|
+
nextindexv : nextindexv,
|
|
32
|
+
secret: multiplex.secret,
|
|
33
|
+
socketId : multiplex.id
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
socket.emit('slidechanged', slideData);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
Reveal.addEventListener( 'slidechanged', function( event ) {
|
|
41
|
+
notify( event.currentSlide, event.indexh, event.indexv, event.origin );
|
|
42
|
+
} );
|
|
43
|
+
|
|
44
|
+
var fragmentNotify = function( event ) {
|
|
45
|
+
notify( Reveal.getCurrentSlide(), Reveal.getIndices().h, Reveal.getIndices().v, event.origin );
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
Reveal.addEventListener( 'fragmentshown', fragmentNotify );
|
|
49
|
+
Reveal.addEventListener( 'fragmenthidden', fragmentNotify );
|
|
50
|
+
}());
|