diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-11-24 02:01:54 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-24 02:01:54 +0100 |
commit | e9fa05b0a068fde0197ea01f2ff31e2513b7965f (patch) | |
tree | bcea53e8c377b330fb5cda1e1cc47e15c147e1d3 /presentations/2016-11-30-Profitbricks/plugin/markdown/example.html | |
parent | 33db20cf1eacb112a71657056e02b984649690d5 (diff) | |
download | jenkins.debian.net-e9fa05b0a068fde0197ea01f2ff31e2513b7965f.tar.xz |
copied from git.debian.org/git/reproducible/presentations.git / 2016-11-13-MiniDebConfCambridge there, Copyright & thanks to Chris Lamb
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'presentations/2016-11-30-Profitbricks/plugin/markdown/example.html')
-rw-r--r-- | presentations/2016-11-30-Profitbricks/plugin/markdown/example.html | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/presentations/2016-11-30-Profitbricks/plugin/markdown/example.html b/presentations/2016-11-30-Profitbricks/plugin/markdown/example.html new file mode 100644 index 00000000..36f6a510 --- /dev/null +++ b/presentations/2016-11-30-Profitbricks/plugin/markdown/example.html @@ -0,0 +1,129 @@ +<!doctype html> +<html lang="en"> + + <head> + <meta charset="utf-8"> + + <title>reveal.js - Markdown Demo</title> + + <link rel="stylesheet" href="../../css/reveal.css"> + <link rel="stylesheet" href="../../css/theme/white.css" id="theme"> + + <link rel="stylesheet" href="../../lib/css/zenburn.css"> + </head> + + <body> + + <div class="reveal"> + + <div class="slides"> + + <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines --> + <section data-markdown="example.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section> + + <!-- Slides are separated by three dashes (quick 'n dirty regular expression) --> + <section data-markdown data-separator="---"> + <script type="text/template"> + ## Demo 1 + Slide 1 + --- + ## Demo 1 + Slide 2 + --- + ## Demo 1 + Slide 3 + </script> + </section> + + <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes --> + <section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$"> + <script type="text/template"> + ## Demo 2 + Slide 1.1 + + -- + + ## Demo 2 + Slide 1.2 + + --- + + ## Demo 2 + Slide 2 + </script> + </section> + + <!-- No "extra" slides, since there are no separators defined (so they'll become horizontal rulers) --> + <section data-markdown> + <script type="text/template"> + A + + --- + + B + + --- + + C + </script> + </section> + + <!-- Slide attributes --> + <section data-markdown> + <script type="text/template"> + <!-- .slide: data-background="#000000" --> + ## Slide attributes + </script> + </section> + + <!-- Element attributes --> + <section data-markdown> + <script type="text/template"> + ## Element attributes + - Item 1 <!-- .element: class="fragment" data-fragment-index="2" --> + - Item 2 <!-- .element: class="fragment" data-fragment-index="1" --> + </script> + </section> + + <!-- Code --> + <section data-markdown> + <script type="text/template"> + ```php + public function foo() + { + $foo = array( + 'bar' => 'bar' + ) + } + ``` + </script> + </section> + + </div> + </div> + + <script src="../../lib/js/head.min.js"></script> + <script src="../../js/reveal.js"></script> + + <script> + + Reveal.initialize({ + controls: true, + progress: true, + history: true, + center: true, + + // Optional libraries used to extend on reveal.js + dependencies: [ + { src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } }, + { src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, + { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, + { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, + { src: '../notes/notes.js' } + ] + }); + + </script> + + </body> +</html> |