aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorHakim El Hattab2012-08-14 22:05:49 -0400
committerHakim El Hattab2012-08-14 22:05:49 -0400
commitfc72690cd9301c58ed75d7640ad5d9b8b3c277d4 (patch)
tree2d39d0979620760bf2c5d20f20f887449ffda9aa /README.md
parent9747673e06872c3c15ae782e63160a194fb4099a (diff)
parent8b00c975e46b34af5ca208b030422495630e65ef (diff)
Merge branch 'patch-6' of https://github.com/dandv/reveal.js
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 12b931f..566a652 100644
--- a/README.md
+++ b/README.md
@@ -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'; } },
]
});
```