2013-08-27 13:25:02 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<title>reveal.js - Test Markdown</title>
|
|
|
|
|
2020-03-06 19:12:20 +00:00
|
|
|
<link rel="stylesheet" href="../dist/reveal.css">
|
2018-01-22 14:35:15 +00:00
|
|
|
<link rel="stylesheet" href="qunit-2.5.0.css">
|
2020-03-07 17:19:08 +00:00
|
|
|
<script src="qunit-2.5.0.js"></script>
|
2013-08-27 13:25:02 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body style="overflow: auto;">
|
|
|
|
|
|
|
|
<div id="qunit"></div>
|
2016-12-08 09:41:55 +00:00
|
|
|
<div id="qunit-fixture"></div>
|
2013-08-27 13:25:02 +00:00
|
|
|
|
|
|
|
<div class="reveal" style="display: none;">
|
|
|
|
|
|
|
|
<div class="slides">
|
|
|
|
|
2014-02-17 20:15:02 +00:00
|
|
|
<!-- <section data-markdown="example.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section> -->
|
2013-08-27 13:25:02 +00:00
|
|
|
|
|
|
|
<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->
|
2014-02-17 20:15:02 +00:00
|
|
|
<section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$">
|
2013-08-27 13:25:02 +00:00
|
|
|
<script type="text/template">
|
|
|
|
## Slide 1.1
|
|
|
|
|
|
|
|
--
|
|
|
|
|
|
|
|
## Slide 1.2
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## Slide 2
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2020-03-06 19:12:20 +00:00
|
|
|
<script src="../dist/reveal.min.js"></script>
|
2020-03-07 17:19:08 +00:00
|
|
|
<script>
|
|
|
|
Reveal.initialize({
|
|
|
|
dependencies: [
|
|
|
|
{ src: '../plugin/markdown/marked.js' },
|
|
|
|
{ src: '../plugin/markdown/markdown.js' },
|
|
|
|
]
|
|
|
|
}).then( function() {
|
|
|
|
|
|
|
|
QUnit.module( 'Markdown' );
|
|
|
|
|
|
|
|
QUnit.test( 'Vertical separator', function( assert ) {
|
|
|
|
assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
|
|
|
|
});
|
|
|
|
|
|
|
|
} );
|
|
|
|
</script>
|
2013-08-27 13:25:02 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|