On Github UzLMaennchen / revealUzL
Created by Hendrik Wallbaum
This is just a little demo, move alng.
Or how about a link? Like the online editor for reveal.js http://slides.com.
<section data-markdown>
    ### Markdown support Write content using inline or external Markdown. Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
</section>
function linkify( selector ) {
  if( supports3DTransforms ) {
    var nodes = document.querySelectorAll( selector );
    for( var i = 0, len = nodes.length; i < len; i++ ) {
      var node = nodes[i];
      if( !node.className ) {
        node.className += ' roll';
      }
    }
  }
}
					
					Code syntax highlighting courtesy of highlight.js.