Sha256: 6cb32ff8b61fd20c7835e85fbf3fe71108a4b46b259e6fc3d402449b151f45e3

Contents?: true

Size: 586 Bytes

Versions: 11

Compression:

Stored size: 586 Bytes

Contents

Reveal.addEventListener( 'ready', function() {

	QUnit.module( 'Markdown' );

	test( 'Options are set', function() {
		strictEqual( marked.defaults.smartypants, true );
	});

	test( 'Smart quotes are activated', function() {
		var text = document.querySelector( '.reveal .slides>section>p' ).textContent;

		strictEqual( /['"]/.test( text ), false );
		strictEqual( /[“”‘’]/.test( text ), true );
	});

} );

Reveal.initialize({
	dependencies: [
		{ src: '../plugin/markdown/marked.js' },
		{ src: '../plugin/markdown/markdown.js' },
	],
	markdown: {
		smartypants: true
	}
});

Version data entries

11 entries across 11 versions & 4 rubygems

Version Path
reveal-ck-3.8.1 files/reveal.js/test/test-markdown-options.js
jekyll-theme-slides-0.1.3 assets/reveal.js/test/test-markdown-options.js
jekyll-theme-slides-0.1.2 assets/reveal.js/test/test-markdown-options.js
jekyll-theme-newtype-0.1.4 assets/revealjs/test/test-markdown-options.js
jekyll-theme-newtype-0.1.3 assets/revealjs/test/test-markdown-options.js
jekyll-theme-newtype-0.1.2 assets/revealjs/test/test-markdown-options.js
jekyll-theme-newtype-0.1.1 assets/revealjs/test/test-markdown-options.js
jekyll-theme-newtype-0.1.0 assets/revealjs/test/test-markdown-options.js
reveal-ck-3.8.0 files/reveal.js/test/test-markdown-options.js
starterlog-theme-1.2.0 assets/modules/reveal.js/test/test-markdown-options.js
reveal-ck-3.7.0 files/reveal.js/test/test-markdown-options.js