Browse Source

Create gh-pages branch via GitHub

gh-pages
Hakim El Hattab 11 years ago
parent
commit
296a65a3e4
  1. 451
      index.html
  2. 2
      params.json

451
index.html

@ -28,31 +28,38 @@
</ul>
</header>
<section>
<h1>reveal.js <a href="https://travis-ci.org/hakimel/reveal.js"><img src="https://travis-ci.org/hakimel/reveal.js.png?branch=master" alt="Build Status"></a>
<h1>
<a name="revealjs-" class="anchor" href="#revealjs-"><span class="octicon octicon-link"></span></a>reveal.js <a href="https://travis-ci.org/hakimel/reveal.js"><img src="https://travis-ci.org/hakimel/reveal.js.png?branch=master" alt="Build Status"></a>
</h1>
<p>A framework for easily creating beautiful presentations using HTML. <a href="http://lab.hakim.se/reveal-js/">Check out the live demo</a>.</p>
<p>reveal.js comes with a broad range of features including <a href="https://github.com/hakimel/reveal.js#markup">nested slides</a>, <a href="https://github.com/hakimel/reveal.js#markdown">markdown contents</a>, <a href="https://github.com/hakimel/reveal.js#pdf-export">PDF export</a>, <a href="https://github.com/hakimel/reveal.js#speaker-notes">speaker notes</a> and a <a href="https://github.com/hakimel/reveal.js#api">JavaScript API</a>. It's best viewed in a browser with support for CSS 3D transforms but <a href="https://github.com/hakimel/reveal.js/wiki/Browser-Support">fallbacks</a> are available to make sure your presentation can still be viewed elsewhere.</p>
<h4>More reading in the Wiki:</h4>
<h4>
<a name="more-reading" class="anchor" href="#more-reading"><span class="octicon octicon-link"></span></a>More reading:</h4>
<ul>
<li>
<a href="https://github.com/hakimel/reveal.js/wiki/Changelog">Changelog</a>: Up-to-date version history.</li>
<a href="#installation">Installation</a>: Step-by-step instructions for getting reveal.js running on your computer.</li>
<li>
<a href="https://github.com/hakimel/reveal.js/releases">Changelog</a>: Up-to-date version history.</li>
<li>
<a href="https://github.com/hakimel/reveal.js/wiki/Example-Presentations">Examples</a>: Presentations created with reveal.js, add your own!</li>
<li>
<a href="https://github.com/hakimel/reveal.js/wiki/Browser-Support">Browser Support</a>: Explanation of browser support and fallbacks.</li>
</ul><h2>rvl.io</h2>
</ul><h2>
<a name="slides" class="anchor" href="#slides"><span class="octicon octicon-link"></span></a>Slides</h2>
<p>Slides are written using HTML or markdown but there's also an online editor for those of you who prefer a more traditional user interface. Give it a try at <a href="http://www.rvl.io">www.rvl.io</a>.</p>
<p>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 <a href="http://slid.es">http://slid.es</a>.</p>
<h2>Instructions</h2>
<h2>
<a name="instructions" class="anchor" href="#instructions"><span class="octicon octicon-link"></span></a>Instructions</h2>
<h3>Markup</h3>
<h3>
<a name="markup" class="anchor" href="#markup"><span class="octicon octicon-link"></span></a>Markup</h3>
<p>Markup heirarchy needs to be <code>&lt;div class="reveal"&gt; &lt;div class="slides"&gt; &lt;section&gt;</code> where the <code>&lt;section&gt;</code> represents one slide and can be repeated indefinitely. If you place multiple <code>&lt;section&gt;</code>'s inside of another <code>&lt;section&gt;</code> they will be shown as vertical slides. The first of the vertical slides is the "root" of the others (at the top), and it will be included in the horizontal sequence. For example:</p>
<p>Markup hierarchy needs to be <code>&lt;div class="reveal"&gt; &lt;div class="slides"&gt; &lt;section&gt;</code> where the <code>&lt;section&gt;</code> represents one slide and can be repeated indefinitely. If you place multiple <code>&lt;section&gt;</code>'s inside of another <code>&lt;section&gt;</code> they will be shown as vertical slides. The first of the vertical slides is the "root" of the others (at the top), and it will be included in the horizontal sequence. For example:</p>
<div class="highlight"><pre><span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">"reveal"</span><span class="nt">&gt;</span>
<span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">"slides"</span><span class="nt">&gt;</span>
@ -65,11 +72,12 @@
<span class="nt">&lt;/div&gt;</span>
</pre></div>
<h3>Markdown</h3>
<h3>
<a name="markdown" class="anchor" href="#markdown"><span class="octicon octicon-link"></span></a>Markdown</h3>
<p>It's possible to write your slides using Markdown. To enable Markdown, add the <code>data-markdown</code> attribute to your <code>&lt;section&gt;</code> elements and wrap the contents in a <code>&lt;script type="text/template"&gt;</code> like the example below.</p>
<p>This is based on <a href="https://gist.github.com/1343518">data-markdown</a> from <a href="https://github.com/paulirish">Paul Irish</a> which in turn uses <a href="https://github.com/coreyti/showdown/">showdown</a>. Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).</p>
<p>This is based on <a href="https://gist.github.com/1343518">data-markdown</a> from <a href="https://github.com/paulirish">Paul Irish</a> modified to use <a href="https://github.com/chjj/marked">marked</a> to support <a href="https://help.github.com/articles/github-flavored-markdown">Github Flavoured Markdown</a>. Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).</p>
<div class="highlight"><pre><span class="nt">&lt;section</span> <span class="na">data-markdown</span><span class="nt">&gt;</span>
<span class="nt">&lt;script </span><span class="na">type=</span><span class="s">"text/template"</span><span class="nt">&gt;</span>
@ -80,14 +88,16 @@
<span class="nt">&lt;/section&gt;</span>
</pre></div>
<h4>External Markdown</h4>
<h4>
<a name="external-markdown" class="anchor" href="#external-markdown"><span class="octicon octicon-link"></span></a>External Markdown</h4>
<p>You can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file.</p>
<div class="highlight"><pre><span class="nt">&lt;section</span> <span class="na">data-markdown=</span><span class="s">"example.md"</span> <span class="na">data-separator=</span><span class="s">"^\n\n\n"</span> <span class="na">data-vertical=</span><span class="s">"^\n\n"</span><span class="nt">&gt;&lt;/section&gt;</span>
</pre></div>
<h3>Configuration</h3>
<h3>
<a name="configuration" class="anchor" href="#configuration"><span class="octicon octicon-link"></span></a>Configuration</h3>
<p>At the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.</p>
@ -105,6 +115,9 @@
<span class="c1">// Enable keyboard shortcuts for navigation</span>
<span class="nx">keyboard</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
<span class="c1">// Enable touch events for navigation</span>
<span class="nx">touch</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
<span class="c1">// Enable the slide overview mode</span>
<span class="nx">overview</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
@ -117,7 +130,7 @@
<span class="c1">// Change the presentation direction to be RTL</span>
<span class="nx">rtl</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
<span class="c1">// Number of milliseconds between automatically proceeding to the </span>
<span class="c1">// Number of milliseconds between automatically proceeding to the</span>
<span class="c1">// next slide, disabled when set to 0, this value can be overwritten</span>
<span class="c1">// by using a data-autoslide attribute on your slides</span>
<span class="nx">autoSlide</span><span class="o">:</span> <span class="mi">0</span><span class="p">,</span>
@ -129,7 +142,13 @@
<span class="nx">rollingLinks</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
<span class="c1">// Transition style</span>
<span class="nx">transition</span><span class="o">:</span> <span class="s1">'default'</span> <span class="c1">// default/cube/page/concave/zoom/linear/fade/none</span>
<span class="nx">transition</span><span class="o">:</span> <span class="s1">'default'</span><span class="p">,</span> <span class="c1">// default/cube/page/concave/zoom/linear/fade/none</span>
<span class="c1">// Transition speed</span>
<span class="nx">transitionSpeed</span><span class="o">:</span> <span class="s1">'default'</span><span class="p">,</span> <span class="c1">// default/fast/slow</span>
<span class="c1">// Transition style for full page backgrounds</span>
<span class="nx">backgroundTransition</span><span class="o">:</span> <span class="s1">'default'</span> <span class="c1">// default/linear</span>
<span class="p">});</span>
</pre></div>
@ -145,33 +164,8 @@
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">configure</span><span class="p">({</span> <span class="nx">autoSlide</span><span class="o">:</span> <span class="mi">5000</span> <span class="p">});</span>
</pre></div>
<h3>Presentation Size</h3>
<p>All presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport. </p>
<p>See below for a list of configuration options related to sizing, including default values:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">initialize</span><span class="p">({</span>
<span class="p">...</span>
<span class="c1">// The "normal" size of the presentation, aspect ratio will be preserved</span>
<span class="c1">// when the presentation is scaled to fit different resolutions. Can be</span>
<span class="c1">// specified using percentage units.</span>
<span class="nx">width</span><span class="o">:</span> <span class="mi">960</span><span class="p">,</span>
<span class="nx">height</span><span class="o">:</span> <span class="mi">700</span><span class="p">,</span>
<span class="c1">// Factor of the display size that should remain empty around the content</span>
<span class="nx">margin</span><span class="o">:</span> <span class="mf">0.1</span><span class="p">,</span>
<span class="c1">// Bounds for smallest/largest possible scale to apply to content</span>
<span class="nx">minScale</span><span class="o">:</span> <span class="mf">0.2</span><span class="p">,</span>
<span class="nx">maxScale</span><span class="o">:</span> <span class="mf">1.0</span>
<span class="p">});</span>
</pre></div>
<h3>Dependencies</h3>
<h3>
<a name="dependencies" class="anchor" href="#dependencies"><span class="octicon octicon-link"></span></a>Dependencies</h3>
<p>Reveal.js doesn't <em>rely</em> on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:</p>
@ -181,7 +175,7 @@
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'lib/js/classList.js'</span><span class="p">,</span> <span class="nx">condition</span><span class="o">:</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="o">!</span><span class="nb">document</span><span class="p">.</span><span class="nx">body</span><span class="p">.</span><span class="nx">classList</span><span class="p">;</span> <span class="p">}</span> <span class="p">},</span>
<span class="c1">// Interpret Markdown in &lt;section&gt; elements</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/markdown/showdown.js'</span><span class="p">,</span> <span class="nx">condition</span><span class="o">:</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="o">!!</span><span class="nb">document</span><span class="p">.</span><span class="nx">querySelector</span><span class="p">(</span> <span class="s1">'[data-markdown]'</span> <span class="p">);</span> <span class="p">}</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/markdown/marked.js'</span><span class="p">,</span> <span class="nx">condition</span><span class="o">:</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="o">!!</span><span class="nb">document</span><span class="p">.</span><span class="nx">querySelector</span><span class="p">(</span> <span class="s1">'[data-markdown]'</span> <span class="p">);</span> <span class="p">}</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/markdown/markdown.js'</span><span class="p">,</span> <span class="nx">condition</span><span class="o">:</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="o">!!</span><span class="nb">document</span><span class="p">.</span><span class="nx">querySelector</span><span class="p">(</span> <span class="s1">'[data-markdown]'</span> <span class="p">);</span> <span class="p">}</span> <span class="p">},</span>
<span class="c1">// Syntax highlight for &lt;code&gt; elements</span>
@ -210,9 +204,51 @@
<strong>callback</strong>: [optional] Function to execute when the script has loaded</li>
<li>
<strong>condition</strong>: [optional] Function which must return true for the script to be loaded</li>
</ul><h3>API</h3>
</ul><h3>
<a name="presentation-size" class="anchor" href="#presentation-size"><span class="octicon octicon-link"></span></a>Presentation Size</h3>
<p>All presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.</p>
<p>See below for a list of configuration options related to sizing, including default values:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">initialize</span><span class="p">({</span>
<span class="p">...</span>
<span class="c1">// The "normal" size of the presentation, aspect ratio will be preserved</span>
<span class="c1">// when the presentation is scaled to fit different resolutions. Can be</span>
<span class="c1">// specified using percentage units.</span>
<span class="nx">width</span><span class="o">:</span> <span class="mi">960</span><span class="p">,</span>
<span class="nx">height</span><span class="o">:</span> <span class="mi">700</span><span class="p">,</span>
<span class="c1">// Factor of the display size that should remain empty around the content</span>
<span class="nx">margin</span><span class="o">:</span> <span class="mf">0.1</span><span class="p">,</span>
<p>The <code>Reveal</code> class provides a minimal JavaScript API for controlling navigation and reading state:</p>
<span class="c1">// Bounds for smallest/largest possible scale to apply to content</span>
<span class="nx">minScale</span><span class="o">:</span> <span class="mf">0.2</span><span class="p">,</span>
<span class="nx">maxScale</span><span class="o">:</span> <span class="mf">1.0</span>
<span class="p">});</span>
</pre></div>
<h3>
<a name="keyboard-bindings" class="anchor" href="#keyboard-bindings"><span class="octicon octicon-link"></span></a>Keyboard Bindings</h3>
<p>If you're unhappy with any of the default keyboard bindings you can override them using the <code>keyboard</code> config option:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">configure</span><span class="p">({</span>
<span class="nx">keyboard</span><span class="o">:</span> <span class="p">{</span>
<span class="mi">13</span><span class="o">:</span> <span class="s1">'next'</span><span class="p">,</span> <span class="c1">// go to the next slide when the ENTER key is pressed</span>
<span class="mi">27</span><span class="o">:</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{},</span> <span class="c1">// do something custom when ESC is pressed</span>
<span class="mi">32</span><span class="o">:</span> <span class="kc">null</span> <span class="c1">// don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)</span>
<span class="p">}</span>
<span class="p">});</span>
</pre></div>
<h3>
<a name="api" class="anchor" href="#api"><span class="octicon octicon-link"></span></a>API</h3>
<p>The <code>Reveal</code> class provides a JavaScript API for controlling navigation and reading state:</p>
<div class="highlight"><pre><span class="c1">// Navigation</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">slide</span><span class="p">(</span> <span class="nx">indexh</span><span class="p">,</span> <span class="nx">indexv</span><span class="p">,</span> <span class="nx">indexf</span> <span class="p">);</span>
@ -225,26 +261,23 @@
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">prevFragment</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">nextFragment</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">toggleOverview</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">togglePause</span><span class="p">();</span>
<span class="c1">// Retrieves the previous and current slide elements</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">getPreviousSlide</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">getCurrentSlide</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">getIndices</span><span class="p">();</span> <span class="c1">// { h: 0, v: 0 } }</span>
</pre></div>
<h3>States</h3>
<p>If you set <code>data-state="somestate"</code> on a slide <code>&lt;section&gt;</code>, "somestate" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.</p>
<p>Furthermore you can also listen to these changes in state via JavaScript:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">addEventListener</span><span class="p">(</span> <span class="s1">'somestate'</span><span class="p">,</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span>
<span class="c1">// TODO: Sprinkle magic</span>
<span class="p">},</span> <span class="kc">false</span> <span class="p">);</span>
<span class="c1">// State checks</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">isFirstSlide</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">isLastSlide</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">isOverview</span><span class="p">();</span>
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">isPaused</span><span class="p">();</span>
</pre></div>
<h3>Ready event</h3>
<h3>
<a name="ready-event" class="anchor" href="#ready-event"><span class="octicon octicon-link"></span></a>Ready Event</h3>
<p>The 'ready' event is fired when reveal.js has loaded all (synchronous) dependencies and is ready to start navigating.</p>
@ -253,7 +286,8 @@
<span class="p">}</span> <span class="p">);</span>
</pre></div>
<h3>Slide change event</h3>
<h3>
<a name="slide-changed-event" class="anchor" href="#slide-changed-event"><span class="octicon octicon-link"></span></a>Slide Changed Event</h3>
<p>An 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.</p>
@ -264,7 +298,54 @@
<span class="p">}</span> <span class="p">);</span>
</pre></div>
<h3>Internal links</h3>
<h3>
<a name="states" class="anchor" href="#states"><span class="octicon octicon-link"></span></a>States</h3>
<p>If you set <code>data-state="somestate"</code> on a slide <code>&lt;section&gt;</code>, "somestate" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.</p>
<p>Furthermore you can also listen to these changes in state via JavaScript:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">addEventListener</span><span class="p">(</span> <span class="s1">'somestate'</span><span class="p">,</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span>
<span class="c1">// TODO: Sprinkle magic</span>
<span class="p">},</span> <span class="kc">false</span> <span class="p">);</span>
</pre></div>
<h3>
<a name="slide-backgrounds" class="anchor" href="#slide-backgrounds"><span class="octicon octicon-link"></span></a>Slide Backgrounds</h3>
<p>Slides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page background colors or images by applying a <code>data-background</code> attribute to your <code>&lt;section&gt;</code> elements. Below are a few examples.</p>
<div class="highlight"><pre><span class="nt">&lt;section</span> <span class="na">data-background=</span><span class="s">"#ff0000"</span><span class="nt">&gt;</span>
<span class="nt">&lt;h2&gt;</span>All CSS color formats are supported, like rgba() or hsl().<span class="nt">&lt;/h2&gt;</span>
<span class="nt">&lt;/section&gt;</span>
<span class="nt">&lt;section</span> <span class="na">data-background=</span><span class="s">"http://example.com/image.png"</span><span class="nt">&gt;</span>
<span class="nt">&lt;h2&gt;</span>This slide will have a full-size background image.<span class="nt">&lt;/h2&gt;</span>
<span class="nt">&lt;/section&gt;</span>
<span class="nt">&lt;section</span> <span class="na">data-background=</span><span class="s">"http://example.com/image.png"</span> <span class="na">data-background-size=</span><span class="s">"100px"</span> <span class="na">data-background-repeat=</span><span class="s">"repeat"</span><span class="nt">&gt;</span>
<span class="nt">&lt;h2&gt;</span>This background image will be sized to 100px and repeated.<span class="nt">&lt;/h2&gt;</span>
<span class="nt">&lt;/section&gt;</span>
</pre></div>
<p>Backgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing <code>backgroundTransition: 'slide'</code> to the <code>Reveal.initialize()</code> call. Alternatively you can set <code>data-background-transition</code> on any section with a background to override that specific transition.</p>
<h3>
<a name="slide-transitions" class="anchor" href="#slide-transitions"><span class="octicon octicon-link"></span></a>Slide Transitions</h3>
<p>The global presentation transition is set using the <code>transition</code> config value. You can override the global transition for a specific slide by using the <code>data-transition</code> attribute:</p>
<div class="highlight"><pre><span class="nt">&lt;section</span> <span class="na">data-transition=</span><span class="s">"zoom"</span><span class="nt">&gt;</span>
<span class="nt">&lt;h2&gt;</span>This slide will override the presentation transition and zoom!<span class="nt">&lt;/h2&gt;</span>
<span class="nt">&lt;/section&gt;</span>
<span class="nt">&lt;section</span> <span class="na">data-transition-speed=</span><span class="s">"fast"</span><span class="nt">&gt;</span>
<span class="nt">&lt;h2&gt;</span>Choose from three transition speeds: default, fast or slow!<span class="nt">&lt;/h2&gt;</span>
<span class="nt">&lt;/section&gt;</span>
</pre></div>
<p>Note that this does not work with the page and cube transitions.</p>
<h3>
<a name="internal-links" class="anchor" href="#internal-links"><span class="octicon octicon-link"></span></a>Internal links</h3>
<p>It's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (<code>&lt;section id="some-slide"&gt;</code>):</p>
@ -282,9 +363,10 @@
<span class="nt">&lt;a</span> <span class="na">href=</span><span class="s">"#"</span> <span class="na">class=</span><span class="s">"navigate-next"</span><span class="nt">&gt;</span> <span class="c">&lt;!-- Next vertical or horizontal slide --&gt;</span>
</pre></div>
<h3>Fragments</h3>
<h3>
<a name="fragments" class="anchor" href="#fragments"><span class="octicon octicon-link"></span></a>Fragments</h3>
<p>Fragments are used to highlight individual elements on a slide. Every elmement with the class <code>fragment</code> will be stepped through before moving on to the next slide. Here's an example: <a href="http://lab.hakim.se/reveal-js/#/16">http://lab.hakim.se/reveal-js/#/16</a></p>
<p>Fragments are used to highlight individual elements on a slide. Every element with the class <code>fragment</code> will be stepped through before moving on to the next slide. Here's an example: <a href="http://lab.hakim.se/reveal-js/#/16">http://lab.hakim.se/reveal-js/#/16</a></p>
<p>The default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:</p>
@ -317,7 +399,8 @@
<span class="nt">&lt;/section&gt;</span>
</pre></div>
<h3>Fragment events</h3>
<h3>
<a name="fragment-events" class="anchor" href="#fragment-events"><span class="octicon octicon-link"></span></a>Fragment events</h3>
<p>When a slide fragment is either shown or hidden reveal.js will dispatch an event.</p>
@ -329,12 +412,13 @@
<span class="p">}</span> <span class="p">);</span>
</pre></div>
<h3>Code syntax highlighting</h3>
<h3>
<a name="code-syntax-highlighting" class="anchor" href="#code-syntax-highlighting"><span class="octicon octicon-link"></span></a>Code syntax highlighting</h3>
<p>By default, Reveal is configured with <a href="http://softwaremaniacs.org/soft/highlight/en/">highlight.js</a> for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted:</p>
<p>By default, Reveal is configured with <a href="http://softwaremaniacs.org/soft/highlight/en/">highlight.js</a> for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the <code>data-trim</code> attribute is present surrounding whitespace is automatically removed.</p>
<div class="highlight"><pre><span class="nt">&lt;section&gt;</span>
<span class="nt">&lt;pre&gt;&lt;code&gt;</span>
<span class="nt">&lt;pre&gt;&lt;code</span> <span class="na">data-trim</span><span class="nt">&gt;</span>
(def lazy-fib
(concat
[0 1]
@ -344,7 +428,8 @@
<span class="nt">&lt;/section&gt;</span>
</pre></div>
<h3>Overview mode</h3>
<h3>
<a name="overview-mode" class="anchor" href="#overview-mode"><span class="octicon octicon-link"></span></a>Overview mode</h3>
<p>Press "Esc" key to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,
as if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:</p>
@ -356,13 +441,25 @@ as if you were at 1,000 feet above your presentation. The overview mode comes wi
<span class="nx">Reveal</span><span class="p">.</span><span class="nx">toggleOverview</span><span class="p">();</span>
</pre></div>
<h3>Fullscreen mode</h3>
<h3>
<a name="fullscreen-mode" class="anchor" href="#fullscreen-mode"><span class="octicon octicon-link"></span></a>Fullscreen mode</h3>
<p>Just press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.</p>
<h2>PDF Export</h2>
<h3>
<a name="embedded-media" class="anchor" href="#embedded-media"><span class="octicon octicon-link"></span></a>Embedded media</h3>
<p>Embedded HTML5 <code>&lt;video&gt;</code>/<code>&lt;audio&gt;</code> and YouTube iframes are automatically paused when your navigate away from a slide. This can be disabled by decorating your element with a <code>data-ignore</code> attribute.</p>
<p>Add <code>data-autoplay</code> to your media element if you want it to automatically start playing when the slide is shown:</p>
<div class="highlight"><pre><span class="nt">&lt;video</span> <span class="na">data-autoplay</span> <span class="na">src=</span><span class="s">"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"</span><span class="nt">&gt;&lt;/video&gt;</span>
</pre></div>
<h2>
<a name="pdf-export" class="anchor" href="#pdf-export"><span class="octicon octicon-link"></span></a>PDF Export</h2>
<p>Presentations can be exported to PDF via a special print stylesheet. This feature requires that you use <a href="http://google.com/chrome">Google Chrome</a>.
<p>Presentations can be exported to PDF via a special print stylesheet. This feature requires that you use <a href="http://google.com/chrome">Google Chrome</a>.
Here's an example of an exported presentation that's been uploaded to SlideShare: <a href="http://www.slideshare.net/hakimel/revealjs-13872948">http://www.slideshare.net/hakimel/revealjs-13872948</a>.</p>
<ol>
@ -374,9 +471,29 @@ Here's an example of an exported presentation that's been uploaded to SlideShare
<li>Click <strong>Save</strong>.</li>
</ol><p><img src="https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png" alt="Chrome Print Settings"></p>
<h2>Speaker Notes</h2>
<h2>
<a name="theming" class="anchor" href="#theming"><span class="octicon octicon-link"></span></a>Theming</h2>
<p>The framework comes with a few different themes included:</p>
<ul>
<li>default: Gray background, white text, blue links</li>
<li>beige: Beige background, dark text, brown links</li>
<li>sky: Blue background, thin white text, blue links</li>
<li>night: Black background, thick white text, orange links</li>
<li>serif: Cappuccino background, gray text, brown links</li>
<li>simple: White background, black text, blue links</li>
</ul><p>Each theme is available as a separate stylesheet. To change theme you will need to replace <strong>default</strong> below with your desired theme name in index.html:</p>
<div class="highlight"><pre><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"stylesheet"</span> <span class="na">href=</span><span class="s">"css/theme/default.css"</span> <span class="na">id=</span><span class="s">"theme"</span><span class="nt">&gt;</span>
</pre></div>
<p>If you want to add a theme of your own see the instructions here: <a href="https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md">/css/theme/README.md</a>.</p>
<h2>
<a name="speaker-notes" class="anchor" href="#speaker-notes"><span class="octicon octicon-link"></span></a>Speaker Notes</h2>
<p>reveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Append <code>?notes</code> to the presentation URL or press the 's' key on your keyboard to open the notes window.</p>
<p>reveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.</p>
<p>By default notes are written using standard HTML, see below, but you can add a <code>data-markdown</code> attribute to the <code>&lt;aside&gt;</code> to write them using Markdown.</p>
@ -389,7 +506,8 @@ Here's an example of an exported presentation that's been uploaded to SlideShare
<span class="nt">&lt;/section&gt;</span>
</pre></div>
<h2>Server Side Speaker Notes</h2>
<h2>
<a name="server-side-speaker-notes" class="anchor" href="#server-side-speaker-notes"><span class="octicon octicon-link"></span></a>Server Side Speaker Notes</h2>
<p>In some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:</p>
@ -412,59 +530,193 @@ Here's an example of an exported presentation that's been uploaded to SlideShare
</li>
<li>Run <code>node plugin/notes-server</code>
</li>
</ol><h2>Multiplexing</h2>
</ol><h2>
<a name="multiplexing" class="anchor" href="#multiplexing"><span class="octicon octicon-link"></span></a>Multiplexing</h2>
<p>The multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at <a href="http://revealjs.jit.su">http://revealjs.jit.su/</a>.</p>
<p>The multiplex plugin needs the following 3 things to operate:</p>
<ol>
<li>Master presentation that has control</li>
<li>Client presentations that follow the master</li>
<li>Socket.io server to broadcast events from the master to the clients</li>
</ol><p>More details:</p>
<h4>
<a name="master-presentation" class="anchor" href="#master-presentation"><span class="octicon octicon-link"></span></a>Master presentation</h4>
<p>The multiplex plugin allows your audience to view the slides on their own phone, tablet or laptop. As the master navigates the slides, all clients will update in real time. See a demo at <a href="http://revealjs.jit.su">http://revealjs.jit.su/</a>.</p>
<p>Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: </p>
<p>Configuration is via the multiplex object in <code>Reveal.initialize</code>. To generate unique secret and token values, visit <a href="revealjs.jit.su/token">revealjs.jit.su/token</a>. Below is an example configuration with the multiplex plugin enabled:</p>
<ol>
<li><code>npm install node-static</code></li>
<li><code>static</code></li>
</ol><p>If you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute <code>node plugin/notes-server</code> in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.</p>
<p>You can then access your master presentation at <code>http://localhost:1947</code></p>
<p>Example configuration:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">initialize</span><span class="p">({</span>
<span class="p">...</span>
<span class="c1">// other options</span>
<span class="c1">// Generate a unique id and secret at revealjs.jit.su/token</span>
<span class="nx">multiplex</span><span class="o">:</span> <span class="p">{</span>
<span class="nx">id</span><span class="o">:</span> <span class="s1">''</span><span class="p">,</span>
<span class="nx">secret</span><span class="o">:</span> <span class="s1">''</span><span class="p">,</span>
<span class="nx">url</span><span class="o">:</span> <span class="s1">'revealjs.jit.su:80'</span>
<span class="c1">// Example values. Generate your own.</span>
<span class="nx">secret</span><span class="o">:</span> <span class="s1">'13652805320794272084'</span><span class="p">,</span> <span class="c1">// Obtained from the socket.io server. Gives this (the master) control of the presentation</span>
<span class="nx">id</span><span class="o">:</span> <span class="s1">'1ea875674b17ca76'</span><span class="p">,</span> <span class="c1">// Obtained from socket.io server</span>
<span class="nx">url</span><span class="o">:</span> <span class="s1">'revealjs.jit.su:80'</span> <span class="c1">// Location of socket.io server</span>
<span class="p">},</span>
<span class="c1">// Optional libraries used to extend on reveal.js</span>
<span class="nx">dependencies</span><span class="o">:</span> <span class="p">[</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'socket.io/socket.io.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/multiplex/client.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="c1">// other deps</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/multiplex/master.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="c1">// and if you want speaker notes</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/notes-server/client.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">}</span>
<span class="p">]</span>
<span class="p">});</span>
</pre></div>
<p><code>multiplex.secret</code> should only be configured on those pages you wish to be able to control slide navigation for all clients. Multi-master configurations work, but if you don't want your audience to be able to control your slides, set the secret to <code>null</code>. In this master/slave setup, you should create a publicly accessible page with secret set to <code>null</code>, and a protected page containing your secret.</p>
<h4>
<a name="client-presentation" class="anchor" href="#client-presentation"><span class="octicon octicon-link"></span></a>Client presentation</h4>
<p>You are very welcome to use the server running at reveal.jit.su, however availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu or run on your own environment.</p>
<p>Served from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via <code>http://example.com/path/to/presentation/client/index.html</code>, with the configuration below causing them to connect to the socket.io server as clients.</p>
<h2>Theming</h2>
<p>Example configuration:</p>
<p>The framework comes with a few different themes included:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">initialize</span><span class="p">({</span>
<span class="c1">// other options</span>
<ul>
<li>default: Gray background, white text, blue links</li>
<li>beige: Beige background, dark text, brown links</li>
<li>sky: Blue background, thin white text, blue links</li>
<li>night: Black background, thick white text, orange links</li>
<li>serif: Cappuccino background, gray text, brown links</li>
<li>simple: White background, black text, blue links</li>
</ul><p>Each theme is available as a separate stylesheet. To change theme you will need to replace <strong>default</strong> below with your desired theme name in index.html:</p>
<span class="nx">multiplex</span><span class="o">:</span> <span class="p">{</span>
<span class="c1">// Example values. Generate your own.</span>
<span class="nx">secret</span><span class="o">:</span> <span class="kc">null</span><span class="p">,</span> <span class="c1">// null so the clients do not have control of the master presentation</span>
<span class="nx">id</span><span class="o">:</span> <span class="s1">'1ea875674b17ca76'</span><span class="p">,</span> <span class="c1">// id, obtained from socket.io server</span>
<span class="nx">url</span><span class="o">:</span> <span class="s1">'revealjs.jit.su:80'</span> <span class="c1">// Location of socket.io server</span>
<span class="p">},</span>
<div class="highlight"><pre><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"stylesheet"</span> <span class="na">href=</span><span class="s">"css/theme/default.css"</span> <span class="na">id=</span><span class="s">"theme"</span><span class="nt">&gt;</span>
<span class="c1">// Optional libraries used to extend on reveal.js</span>
<span class="nx">dependencies</span><span class="o">:</span> <span class="p">[</span>
<span class="c1">// other deps</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/multiplex/client.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">}</span>
<span class="p">]</span>
<span class="p">});</span>
</pre></div>
<p>If you want to add a theme of your own see the instructions here: <a href="https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md">/css/theme/README.md</a>.</p>
<h4>
<a name="socketio-server" class="anchor" href="#socketio-server"><span class="octicon octicon-link"></span></a>Socket.io server</h4>
<h2>Development Environment</h2>
<p>Server that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:</p>
<p>reveal.js is built using the task-based command line build tool <a href="http://gruntjs.com">grunt.js</a> (<a href="https://github.com/gruntjs/grunt#installing-grunt">installation instructions</a>). With Node.js and grunt.js installed, you need to start by running <code>npm install</code> in the reveal.js root. When the dependencies have been installed you should run <code>grunt watch</code> to start monitoring files for changes.</p>
<ol>
<li><code>npm install</code></li>
<li><code>node plugin/multiplex</code></li>
</ol><p>Or you use the socket.io server at <a href="http://revealjs.jit.su">http://revealjs.jit.su</a>.</p>
<p>You'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit <code>http://example.com/token</code>, where <code>http://example.com</code> is the location of your socket.io server. Or if you're going to use the socket.io server at <a href="http://revealjs.jit.su">http://revealjs.jit.su</a>, visit <a href="http://revealjs.jit.su/token">http://revealjs.jit.su/token</a>.</p>
<p>You are very welcome to point your presentations at the Socket.io server running at <a href="http://revealjs.jit.su">http://revealjs.jit.su</a>, but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.</p>
<h5>
<a name="socketio-server-as-file-static-server" class="anchor" href="#socketio-server-as-file-static-server"><span class="octicon octicon-link"></span></a>socket.io server as file static server</h5>
<p>The socket.io server can play the role of static file server for your client presentation, as in the example at <a href="http://revealjs.jit.su">http://revealjs.jit.su</a>. (Open <a href="http://revealjs.jit.su">http://revealjs.jit.su</a> in two browsers. Navigate through the slides on one, and the other will update to match.) </p>
<p>Example configuration:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">initialize</span><span class="p">({</span>
<span class="c1">// other options</span>
<span class="nx">multiplex</span><span class="o">:</span> <span class="p">{</span>
<span class="c1">// Example values. Generate your own.</span>
<span class="nx">secret</span><span class="o">:</span> <span class="kc">null</span><span class="p">,</span> <span class="c1">// null so the clients do not have control of the master presentation</span>
<span class="nx">id</span><span class="o">:</span> <span class="s1">'1ea875674b17ca76'</span><span class="p">,</span> <span class="c1">// id, obtained from socket.io server</span>
<span class="nx">url</span><span class="o">:</span> <span class="s1">'example.com:80'</span> <span class="c1">// Location of your socket.io server</span>
<span class="p">},</span>
<span class="c1">// Optional libraries used to extend on reveal.js</span>
<span class="nx">dependencies</span><span class="o">:</span> <span class="p">[</span>
<span class="c1">// other deps</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/multiplex/client.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">}</span>
<span class="p">]</span>
</pre></div>
<p>It can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open <a href="http://revealjs.jit.su">http://revealjs.jit.su</a> in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)</p>
<p>Example configuration:</p>
<div class="highlight"><pre><span class="nx">Reveal</span><span class="p">.</span><span class="nx">initialize</span><span class="p">({</span>
<span class="c1">// other options</span>
<p>If you want to customise reveal.js without running grunt.js you can alter the HTML to point to the uncompressed source files (css/reveal.css &amp; js/reveal.js).</p>
<span class="nx">multiplex</span><span class="o">:</span> <span class="p">{</span>
<span class="c1">// Example values. Generate your own.</span>
<span class="nx">secret</span><span class="o">:</span> <span class="s1">'13652805320794272084'</span><span class="p">,</span> <span class="c1">// Obtained from the socket.io server. Gives this (the master) control of the presentation</span>
<span class="nx">id</span><span class="o">:</span> <span class="s1">'1ea875674b17ca76'</span><span class="p">,</span> <span class="c1">// Obtained from socket.io server</span>
<span class="nx">url</span><span class="o">:</span> <span class="s1">'example.com:80'</span> <span class="c1">// Location of your socket.io server</span>
<span class="p">},</span>
<h3>Folder Structure</h3>
<span class="c1">// Optional libraries used to extend on reveal.js</span>
<span class="nx">dependencies</span><span class="o">:</span> <span class="p">[</span>
<span class="c1">// other deps</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/multiplex/master.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">},</span>
<span class="p">{</span> <span class="nx">src</span><span class="o">:</span> <span class="s1">'plugin/multiplex/client.js'</span><span class="p">,</span> <span class="nx">async</span><span class="o">:</span> <span class="kc">true</span> <span class="p">}</span>
<span class="p">]</span>
<span class="p">});</span>
</pre></div>
<h2>
<a name="installation" class="anchor" href="#installation"><span class="octicon octicon-link"></span></a>Installation</h2>
<p>The <strong>basic setup</strong> is for authoring presentations only. The <strong>full setup</strong> gives you access to all reveal.js features as well as the development tasks needed to make changes to the source.</p>
<h3>
<a name="basic-setup" class="anchor" href="#basic-setup"><span class="octicon octicon-link"></span></a>Basic setup</h3>
<p>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.</p>
<ol>
<li><p>Download the latest version of reveal.js from <a href="https://github.com/hakimel/reveal.js/releases">https://github.com/hakimel/reveal.js/releases</a></p></li>
<li><p>Unzip and replace the example contents in index.html with your own</p></li>
<li><p>Open index.html in a browser to view it</p></li>
</ol><h3>
<a name="full-setup" class="anchor" href="#full-setup"><span class="octicon octicon-link"></span></a>Full setup</h3>
<p>Some reveal.js features, like external markdown, 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.</p>
<ol>
<li><p>Install <a href="http://nodejs.org/">Node.js</a></p></li>
<li><p>Install <a href="http://gruntjs.com/getting-started#installing-the-cli">Grunt</a></p></li>
<li>
<p>Clone the reveal.js repository </p>
<pre><code>$ git clone git@github.com:hakimel/reveal.js.git
</code></pre>
</li>
<li>
<p>Navigate to the reveal.js folder </p>
<pre><code>$ cd reveal.js
</code></pre>
</li>
<li>
<p>Install dependencies </p>
<pre><code>$ npm install
</code></pre>
</li>
<li>
<p>Serve the presentation and monitor source files for changes </p>
<pre><code>$ grunt serve
</code></pre>
</li>
<li><p>Open <a href="http://localhost:8000">http://localhost:8000</a> to view your presentation</p></li>
</ol><h3>
<a name="folder-structure" class="anchor" href="#folder-structure"><span class="octicon octicon-link"></span></a>Folder Structure</h3>
<ul>
<li>
@ -475,7 +727,8 @@ Here's an example of an exported presentation that's been uploaded to SlideShare
<strong>plugin/</strong> Components that have been developed as extensions to reveal.js</li>
<li>
<strong>lib/</strong> All other third party assets (JavaScript, CSS, fonts)</li>
</ul><h2>License</h2>
</ul><h2>
<a name="license" class="anchor" href="#license"><span class="octicon octicon-link"></span></a>License</h2>
<p>MIT licensed</p>

2
params.json

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save