merge external markdown support, move example to plugin (#329)
authorHakim El Hattab <hakim.elhattab@gmail.com>
Wed, 27 Feb 2013 20:01:30 +0000 (15:01 -0500)
committerHakim El Hattab <hakim.elhattab@gmail.com>
Wed, 27 Feb 2013 20:01:30 +0000 (15:01 -0500)
demo.md [deleted file]
index-markdown.html [deleted file]
plugin/markdown/example.html [new file with mode: 0644]
plugin/markdown/example.md [new file with mode: 0644]

diff --git a/demo.md b/demo.md
deleted file mode 100644 (file)
index 1efe5f9..0000000
--- a/demo.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# External markdown
-
-
-
-## Slide 1.1
-
-Content 1.1
-
-
-## Slide 1.2
-
-Content 1.2
-
-
-
-## Slide 2
-
-Content 2.1
-
-
-
-## Slide 3.1
-
-Content 3.1
-
-
-## Slide 3.2
-
-Content 3.2
diff --git a/index-markdown.html b/index-markdown.html
deleted file mode 100644 (file)
index 367c879..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
-<!doctype html>
-<html lang="en">
-
-       <head>
-               <meta charset="utf-8">
-
-               <title>reveal.js - The HTML Presentation Framework</title>
-
-               <meta name="description" content="A framework for easily creating beautiful presentations using HTML">
-               <meta name="author" content="Hakim El Hattab">
-
-               <meta name="apple-mobile-web-app-capable" content="yes" />
-               <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
-
-               <link rel="stylesheet" href="css/reveal.css">
-               <link rel="stylesheet" href="css/theme/default.css" id="theme">
-
-               <!-- For syntax highlighting -->
-               <link rel="stylesheet" href="lib/css/zenburn.css">
-
-               <!-- If the query includes 'print-pdf', use the PDF print sheet -->
-               <script>
-                       document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
-               </script>
-
-               <!--[if lt IE 9]>
-               <script src="lib/js/html5shiv.js"></script>
-               <![endif]-->
-       </head>
-
-       <body>
-
-               <div class="reveal">
-
-                       <!-- Any section element inside of this container is displayed as a slide -->
-                       <div class="slides">
-
-                <!-- Use external markdown resource, and separate slides by three newlines; vertical slides by two newlines -->
-                <section data-markdown="demo.md" data-separator="^\n\n\n" data-vertical="^\n\n"></section>
-
-                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->
-                <section data-markdown data-separator="---">
-                    <script type="text/template">
-                        Slide 1
-                        ---
-                        Slide 2
-                        ---
-                        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-vertical="^\n--\n$">
-                    <script type="text/template">
-                        Slide 1.1
-
-                        --
-
-                        Slide 1.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>
-
-            </div>
-               </div>
-
-               <script src="lib/js/head.min.js"></script>
-               <script src="js/reveal.js"></script>
-
-               <script>
-
-                       // Full list of configuration options available here:
-                       // https://github.com/hakimel/reveal.js#configuration
-                       Reveal.initialize({
-                               controls: true,
-                               progress: true,
-                               history: true,
-                               center: true,
-
-                               theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
-                               transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
-
-                               // Optional libraries used to extend on reveal.js
-                               dependencies: [
-                                       { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
-                                       { src: 'plugin/markdown/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
-                                       { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
-                                       { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
-                                       { src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
-                                       { src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
-                                       // { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
-                               ]
-                       });
-
-               </script>
-
-       </body>
-</html>
diff --git a/plugin/markdown/example.html b/plugin/markdown/example.html
new file mode 100644 (file)
index 0000000..b4e7f91
--- /dev/null
@@ -0,0 +1,97 @@
+<!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/default.css" id="theme">
+       </head>
+
+       <body>
+
+               <div class="reveal">
+
+                       <div class="slides">
+
+                <!-- Use external markdown resource, and separate slides by three newlines; vertical slides by two newlines -->
+                <section data-markdown="example.md" data-separator="^\n\n\n" data-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-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>
+
+            </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,
+
+                               theme: Reveal.getQueryHash().theme,
+                               transition: Reveal.getQueryHash().transition || 'default',
+
+                               // Optional libraries used to extend on reveal.js
+                               dependencies: [
+                                       { src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },
+                                       { src: 'showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
+                                       { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }
+                               ]
+                       });
+
+               </script>
+
+       </body>
+</html>
diff --git a/plugin/markdown/example.md b/plugin/markdown/example.md
new file mode 100644 (file)
index 0000000..e988dd9
--- /dev/null
@@ -0,0 +1,29 @@
+# Markdown Demo
+
+
+
+## External 1.1
+
+Content 1.1
+
+
+## External 1.2
+
+Content 1.2
+
+
+
+## External 2
+
+Content 2.1
+
+
+
+## External 3.1
+
+Content 3.1
+
+
+## External 3.2
+
+Content 3.2