12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>reveal.js - Test Markdown</title>
- <link rel="stylesheet" href="../dist/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="simple.md" data-separator="^\r?\n\r?\n\r?\n" data-separator-vertical="^\r?\n\r?\n"></section>
- </div>
- </div>
- <script src="qunit-2.5.0.js"></script>
- <script type="module">
- import '../js/index.js'
- import Markdown from '../plugin/markdown/markdown.js'
- Reveal.initialize({
- dependencies: [ Markdown ]
- }).then( function() {
- QUnit.module( 'Markdown' );
- QUnit.test( 'Vertical separator', function( assert ) {
- assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
- });
- QUnit.test( 'Horizontal separator', function( assert ) {
- assert.strictEqual( document.querySelectorAll( '.reveal .slides>section' ).length, 2, 'found two slides' );
- });
- } );
- </script>
- </body>
- </html>
|