2015-11-11 08:37:08 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<title>reveal.js - Test Markdown</title>
|
|
|
|
|
2020-03-06 20:12:20 +01:00
|
|
|
<link rel="stylesheet" href="../dist/reveal.css">
|
2018-01-22 15:35:15 +01:00
|
|
|
<link rel="stylesheet" href="qunit-2.5.0.css">
|
2015-11-11 08:37:08 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body style="overflow: auto;">
|
|
|
|
|
|
|
|
<div id="qunit"></div>
|
2019-02-28 13:47:49 +01:00
|
|
|
<div id="qunit-fixture"></div>
|
2015-11-11 08:37:08 +01:00
|
|
|
|
|
|
|
<div class="reveal" style="display: none;">
|
|
|
|
|
|
|
|
<div class="slides">
|
2020-03-07 18:19:08 +01:00
|
|
|
<section data-markdown="simple.md" data-separator="^\r?\n\r?\n\r?\n" data-separator-vertical="^\r?\n\r?\n"></section>
|
2015-11-11 08:37:08 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2018-01-22 15:35:15 +01:00
|
|
|
<script src="qunit-2.5.0.js"></script>
|
2020-03-07 18:19:08 +01:00
|
|
|
<script src="../dist/reveal.min.js"></script>
|
|
|
|
|
|
|
|
<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' );
|
|
|
|
});
|
2015-11-11 08:37:08 +01:00
|
|
|
|
2020-03-07 18:19:08 +01:00
|
|
|
QUnit.test( 'Horizontal separator', function( assert ) {
|
|
|
|
assert.strictEqual( document.querySelectorAll( '.reveal .slides>section' ).length, 2, 'found two slides' );
|
|
|
|
});
|
2019-02-28 13:47:49 +01:00
|
|
|
|
2020-03-07 18:19:08 +01:00
|
|
|
} );
|
|
|
|
</script>
|
2015-11-11 08:37:08 +01:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|