diff options
author | Hakim El Hattab | 2012-10-08 09:15:36 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-10-08 09:15:36 -0400 |
commit | 25efef8c4f1275db62925ed18bab7282a5b767b2 (patch) | |
tree | ec8fcf715ddef526d62f6dc8e412da09102bf7d3 /index.html | |
parent | f22e5f85e8284aaca724c372e8f9efdfd9b11943 (diff) |
wrap markdown in script text/template to fix parsing errors (closes #146 #155 #162)
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -36,6 +36,7 @@ <!-- Any section element inside of this container is displayed as a slide --> <div class="slides"> + <section> <h1>Reveal.js</h1> <h3>HTML Presentations Made Easy</h3> @@ -129,17 +130,18 @@ </section> <section data-markdown> - ## Markdown support - - For those of you who like that sort of thing. Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown). + <script type="text/template"> + ## Markdown support + + For those of you who like that sort of thing. Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown). - <pre><code contenteditable style="margin-top: 20px;"><section data-markdown> - ## Markdown support + <section data-markdown> + ## Markdown support - For those of you who like that sort of thing. - Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown). -</section> - </code></pre> + For those of you who like that sort of thing. + Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown). + </section> + </script> </section> <section> @@ -314,6 +316,7 @@ function linkify( selector ) { <h1>THE END</h1> <h3>BY Hakim El Hattab / hakim.se</h3> </section> + </div> </div> |