diff options
author | Dan Dascalescu | 2012-08-14 18:09:28 -0700 |
---|---|---|
committer | Dan Dascalescu | 2012-08-14 18:09:28 -0700 |
commit | 8b00c975e46b34af5ca208b030422495630e65ef (patch) | |
tree | f56c34d2013385124e591f91086d81c71f4058a9 | |
parent | d0e6e95781620f9c1638f16e049f9962ab11e33a (diff) |
Document optional libraries
Note that socket.io and a few others are not shipped by default
-rw-r--r-- | README.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -87,8 +87,17 @@ Reveal.js doesn't _rely_ on any third party scripts to work but a few optional l ```javascript Reveal.initialize({ dependencies: [ + // syntax highlight for <code> sections { src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } }, + // cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/ { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } } + // interpret Markdown in <section> elements + { src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, + { src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, + // speaker notes support + { src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } }, + // required by speakernotes + { src: 'socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } }, ] }); ``` |