Browse Source

restore support for markdown speaker notes

Hakim El Hattab 5 years ago
parent
commit
f618de81de

File diff suppressed because it is too large
+ 0 - 0
dist/reveal.esm.js


File diff suppressed because it is too large
+ 0 - 0
dist/reveal.js


+ 1 - 1
js/reveal.js

@@ -44,7 +44,7 @@ export default function( revealElement, options ) {
 	const Reveal = {};
 
 	// The reveal.js version
-	const VERSION = '4.0.0-dev';
+	const VERSION = '4.0.0-rc.1';
 
 	// Configuration defaults, can be overridden at initialization time
 	let config,

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "reveal.js",
-  "version": "4.0.0-dev",
+  "version": "4.0.0-rc.1",
   "description": "The HTML Presentation Framework",
   "homepage": "https://revealjs.com",
   "subdomain": "revealjs",

File diff suppressed because it is too large
+ 0 - 0
plugin/notes/notes.esm.js


File diff suppressed because it is too large
+ 0 - 0
plugin/notes/notes.js


+ 3 - 0
plugin/notes/plugin.js

@@ -1,5 +1,7 @@
 import speakerViewHTML from './speaker-view.html';
 
+import marked from 'marked'
+
 /**
  * Handles opening of and synchronization with the reveal.js
  * notes window.
@@ -25,6 +27,7 @@ const Plugin = () => {
         }
 
 		popup = window.open( 'about:blank', 'reveal.js - Notes', 'width=1100,height=700' );
+		popup.marked = marked;
 		popup.document.write( speakerViewHTML );
 
 		if( !popup ) {

+ 0 - 1
plugin/notes/speaker-view.html

@@ -334,7 +334,6 @@
 			<select class="speaker-layout-dropdown"></select>
 		</div>
 
-		<script src="../../plugin/markdown/marked.js"></script>
 		<script>
 
 			(function() {

Some files were not shown because too many files changed in this diff