12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>reveal.js - Test Markdown Options</title>
- <link rel="stylesheet" href="../css/reveal.css">
- <link rel="stylesheet" href="qunit-2.5.0.css">
- </head>
- <body style="overflow: auto;">
- <div id="qunit"></div>
- <div id="qunit-fixture"></div>
- <div class="reveal" style="display: none;">
- <div class="slides">
- <section data-markdown>
- <script type="text/template">
- ## Testing Markdown Options
- This "slide" should contain 'smart' quotes.
- </script>
- </section>
- </div>
- </div>
- <script src="../js/reveal.js"></script>
- <script src="qunit-2.5.0.js"></script>
- <script src="test-markdown-options.js"></script>
- </body>
- </html>
|