2020-04-15 10:23:51 +02:00
/ * !
2013-08-24 16:03:34 +02:00
* The reveal . js markdown plugin . Handles parsing of
* markdown inside of presentations as well as loading
* of external markdown documents .
* /
2012-07-31 07:13:33 +02:00
2020-05-04 10:39:37 +02:00
import marked from 'marked'
2013-09-06 14:24:03 +02:00
2020-04-23 10:54:48 +02:00
const DEFAULT _SLIDE _SEPARATOR = '^\r?\n---\r?\n$' ,
DEFAULT _NOTES _SEPARATOR = 'notes?:' ,
DEFAULT _ELEMENT _ATTRIBUTES _SEPARATOR = '\\\.element\\\s*?(.+?)$' ,
DEFAULT _SLIDE _ATTRIBUTES _SEPARATOR = '\\\.slide:\\\s*?(\\\S.+?)$' ;
2015-07-07 12:15:43 +02:00
2020-04-23 10:54:48 +02:00
const SCRIPT _END _PLACEHOLDER = '__SCRIPT_END__' ;
2020-04-27 10:43:56 +02:00
const CODE _LINE _NUMBER _REGEX = /\[([\s\d,|-]*)\]/ ;
2020-04-23 10:54:48 +02:00
const Plugin = ( ) => {
// The reveal.js instance this plugin is attached to
let deck ;
2013-09-06 14:24:03 +02:00
2013-08-24 16:39:15 +02:00
/ * *
2020-04-23 10:54:48 +02:00
* Retrieves the markdown contents of a slide section
* element . Normalizes leading tabs / whitespace .
2013-08-24 16:39:15 +02:00
* /
2020-04-23 10:54:48 +02:00
function getMarkdownFromSlide ( section ) {
2015-07-07 12:15:43 +02:00
2020-04-23 10:54:48 +02:00
// look for a <script> or <textarea data-template> wrapper
var template = section . querySelector ( '[data-template]' ) || section . querySelector ( 'script' ) ;
2015-07-07 12:15:43 +02:00
2020-04-23 10:54:48 +02:00
// strip leading whitespace so it isn't evaluated as code
var text = ( template || section ) . textContent ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
// restore script end tags
text = text . replace ( new RegExp ( SCRIPT _END _PLACEHOLDER , 'g' ) , '</script>' ) ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
var leadingWs = text . match ( /^\n?(\s*)/ ) [ 1 ] . length ,
leadingTabs = text . match ( /^\n?(\t*)/ ) [ 1 ] . length ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
if ( leadingTabs > 0 ) {
text = text . replace ( new RegExp ( '\\n?\\t{' + leadingTabs + '}' , 'g' ) , '\n' ) ;
}
else if ( leadingWs > 1 ) {
text = text . replace ( new RegExp ( '\\n? {' + leadingWs + '}' , 'g' ) , '\n' ) ;
}
2020-04-17 14:10:56 +02:00
2020-04-23 10:54:48 +02:00
return text ;
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
}
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
/ * *
* Given a markdown slide section element , this will
* return all arguments that aren ' t related to markdown
* parsing . Used to forward any other user - defined arguments
* to the output markdown slide .
* /
function getForwardedAttributes ( section ) {
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
var attributes = section . attributes ;
var result = [ ] ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
for ( var i = 0 , len = attributes . length ; i < len ; i ++ ) {
var name = attributes [ i ] . name ,
value = attributes [ i ] . value ;
2013-07-23 17:31:30 +02:00
2020-04-23 10:54:48 +02:00
// disregard attributes that are used for markdown loading/parsing
if ( /data\-(markdown|separator|vertical|notes)/gi . test ( name ) ) continue ;
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
if ( value ) {
result . push ( name + '="' + value + '"' ) ;
}
else {
result . push ( name ) ;
}
}
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
return result . join ( ' ' ) ;
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
}
2020-04-23 10:54:48 +02:00
/ * *
* Inspects the given options and fills out default
* values for what ' s not defined .
* /
function getSlidifyOptions ( options ) {
2013-09-06 14:24:03 +02:00
2020-04-23 10:54:48 +02:00
options = options || { } ;
options . separator = options . separator || DEFAULT _SLIDE _SEPARATOR ;
options . notesSeparator = options . notesSeparator || DEFAULT _NOTES _SEPARATOR ;
options . attributes = options . attributes || '' ;
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
return options ;
2020-04-15 10:23:51 +02:00
2013-09-06 14:24:03 +02:00
}
2020-04-23 10:54:48 +02:00
/ * *
* Helper function for constructing a markdown slide .
* /
function createMarkdownSlide ( content , options ) {
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
options = getSlidifyOptions ( options ) ;
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
var notesMatch = content . split ( new RegExp ( options . notesSeparator , 'mgi' ) ) ;
2015-07-07 12:15:43 +02:00
2020-04-23 10:54:48 +02:00
if ( notesMatch . length === 2 ) {
content = notesMatch [ 0 ] + '<aside class="notes">' + marked ( notesMatch [ 1 ] . trim ( ) ) + '</aside>' ;
}
2015-07-07 12:15:43 +02:00
2020-04-23 10:54:48 +02:00
// prevent script end tags in the content from interfering
// with parsing
content = content . replace ( /<\/script>/g , SCRIPT _END _PLACEHOLDER ) ;
2013-08-24 16:39:15 +02:00
2020-04-23 10:54:48 +02:00
return '<script type="text/template">' + content + '</script>' ;
2020-04-15 10:23:51 +02:00
2013-08-24 16:39:15 +02:00
}
2020-04-23 10:54:48 +02:00
/ * *
* Parses a data string into multiple slides based
* on the passed in separator arguments .
* /
function slidify ( markdown , options ) {
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
options = getSlidifyOptions ( options ) ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
var separatorRegex = new RegExp ( options . separator + ( options . verticalSeparator ? '|' + options . verticalSeparator : '' ) , 'mg' ) ,
horizontalSeparatorRegex = new RegExp ( options . separator ) ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
var matches ,
lastIndex = 0 ,
isHorizontal ,
wasHorizontal = true ,
content ,
sectionStack = [ ] ;
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
// iterate until all blocks between separators are stacked up
while ( matches = separatorRegex . exec ( markdown ) ) {
var notes = null ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
// determine direction (horizontal by default)
isHorizontal = horizontalSeparatorRegex . test ( matches [ 0 ] ) ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
if ( ! isHorizontal && wasHorizontal ) {
// create vertical stack
sectionStack . push ( [ ] ) ;
}
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
// pluck slide content from markdown input
content = markdown . substring ( lastIndex , matches . index ) ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
if ( isHorizontal && wasHorizontal ) {
// add to horizontal stack
sectionStack . push ( content ) ;
}
else {
// add to vertical stack
sectionStack [ sectionStack . length - 1 ] . push ( content ) ;
}
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
lastIndex = separatorRegex . lastIndex ;
wasHorizontal = isHorizontal ;
2013-08-23 23:49:19 +02:00
}
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
// add the remaining slide
( wasHorizontal ? sectionStack : sectionStack [ sectionStack . length - 1 ] ) . push ( markdown . substring ( lastIndex ) ) ;
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
var markdownSections = '' ;
2013-08-24 22:13:24 +02:00
2020-04-23 10:54:48 +02:00
// flatten the hierarchical stack, and insert <section data-markdown> tags
for ( var i = 0 , len = sectionStack . length ; i < len ; i ++ ) {
// vertical
if ( sectionStack [ i ] instanceof Array ) {
markdownSections += '<section ' + options . attributes + '>' ;
2013-08-24 22:13:24 +02:00
2020-04-23 10:54:48 +02:00
sectionStack [ i ] . forEach ( function ( child ) {
markdownSections += '<section data-markdown>' + createMarkdownSlide ( child , options ) + '</section>' ;
} ) ;
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
markdownSections += '</section>' ;
}
else {
markdownSections += '<section ' + options . attributes + ' data-markdown>' + createMarkdownSlide ( sectionStack [ i ] , options ) + '</section>' ;
}
}
2013-11-25 22:05:23 +01:00
2020-04-23 10:54:48 +02:00
return markdownSections ;
2012-11-16 15:25:26 +01:00
2013-08-24 16:39:15 +02:00
}
2020-04-23 10:54:48 +02:00
/ * *
* Parses any current data - markdown slides , splits
* multi - slide markdown into separate sections and
* handles loading of external markdown .
* /
function processSlides ( scope ) {
2012-07-31 07:13:33 +02:00
2020-04-23 10:54:48 +02:00
return new Promise ( function ( resolve ) {
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
var externalPromises = [ ] ;
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
[ ] . slice . call ( scope . querySelectorAll ( '[data-markdown]:not([data-markdown-parsed])' ) ) . forEach ( function ( section , i ) {
2013-11-25 22:05:23 +01:00
2020-04-23 10:54:48 +02:00
if ( section . getAttribute ( 'data-markdown' ) . length ) {
2013-08-24 16:39:15 +02:00
2020-04-23 10:54:48 +02:00
externalPromises . push ( loadExternalMarkdown ( section ) . then (
2013-08-24 16:39:15 +02:00
2020-04-23 10:54:48 +02:00
// Finished loading external file
function ( xhr , url ) {
section . outerHTML = slidify ( xhr . responseText , {
separator : section . getAttribute ( 'data-separator' ) ,
verticalSeparator : section . getAttribute ( 'data-separator-vertical' ) ,
notesSeparator : section . getAttribute ( 'data-separator-notes' ) ,
attributes : getForwardedAttributes ( section )
} ) ;
} ,
2013-08-24 16:39:15 +02:00
2020-04-23 10:54:48 +02:00
// Failed to load markdown
function ( xhr , url ) {
section . outerHTML = '<section data-state="alert">' +
'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr . status + '.' +
'Check your browser\'s JavaScript console for more details.' +
'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +
'</section>' ;
}
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
) ) ;
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
}
else if ( section . getAttribute ( 'data-separator' ) || section . getAttribute ( 'data-separator-vertical' ) || section . getAttribute ( 'data-separator-notes' ) ) {
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
section . outerHTML = slidify ( getMarkdownFromSlide ( section ) , {
separator : section . getAttribute ( 'data-separator' ) ,
verticalSeparator : section . getAttribute ( 'data-separator-vertical' ) ,
notesSeparator : section . getAttribute ( 'data-separator-notes' ) ,
attributes : getForwardedAttributes ( section )
} ) ;
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
}
else {
section . innerHTML = createMarkdownSlide ( getMarkdownFromSlide ( section ) ) ;
}
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
} ) ;
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
Promise . all ( externalPromises ) . then ( resolve ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
} ) ;
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
}
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
function loadExternalMarkdown ( section ) {
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
return new Promise ( function ( resolve , reject ) {
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
var xhr = new XMLHttpRequest ( ) ,
url = section . getAttribute ( 'data-markdown' ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
var datacharset = section . getAttribute ( 'data-charset' ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes
if ( datacharset != null && datacharset != '' ) {
xhr . overrideMimeType ( 'text/html; charset=' + datacharset ) ;
}
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
xhr . onreadystatechange = function ( section , xhr ) {
if ( xhr . readyState === 4 ) {
// file protocol yields status code 0 (useful for local debug, mobile applications etc.)
if ( ( xhr . status >= 200 && xhr . status < 300 ) || xhr . status === 0 ) {
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
resolve ( xhr , url ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
}
else {
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
reject ( xhr , url ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
}
2019-03-04 14:11:21 +01:00
}
2020-04-23 10:54:48 +02:00
} . bind ( this , section , xhr ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
xhr . open ( 'GET' , url , true ) ;
2019-03-04 14:11:21 +01:00
2020-04-23 10:54:48 +02:00
try {
xhr . send ( ) ;
}
catch ( e ) {
console . warn ( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e ) ;
resolve ( xhr , url ) ;
2019-03-04 14:11:21 +01:00
}
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
} ) ;
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
}
2020-04-15 10:23:51 +02:00
2020-04-23 10:54:48 +02:00
/ * *
* Check if a node value has the attributes pattern .
* If yes , extract it and add that value as one or several attributes
* to the target element .
*
* You need Cache Killer on Chrome to see the effect on any FOM transformation
* directly on refresh ( F5 )
* http : //stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277
* /
function addAttributeInElement ( node , elementTarget , separator ) {
var mardownClassesInElementsRegex = new RegExp ( separator , 'mg' ) ;
var mardownClassRegex = new RegExp ( "([^\"= ]+?)=\"([^\"]+?)\"|(data-[^\"= ]+?)(?=[\" ])" , 'mg' ) ;
var nodeValue = node . nodeValue ;
var matches ,
matchesClass ;
if ( matches = mardownClassesInElementsRegex . exec ( nodeValue ) ) {
var classes = matches [ 1 ] ;
nodeValue = nodeValue . substring ( 0 , matches . index ) + nodeValue . substring ( mardownClassesInElementsRegex . lastIndex ) ;
node . nodeValue = nodeValue ;
while ( matchesClass = mardownClassRegex . exec ( classes ) ) {
if ( matchesClass [ 2 ] ) {
elementTarget . setAttribute ( matchesClass [ 1 ] , matchesClass [ 2 ] ) ;
} else {
elementTarget . setAttribute ( matchesClass [ 3 ] , "" ) ;
}
2013-10-26 21:34:11 +02:00
}
2020-04-23 10:54:48 +02:00
return true ;
2013-10-26 21:34:11 +02:00
}
2020-04-23 10:54:48 +02:00
return false ;
2013-10-26 21:34:11 +02:00
}
2020-04-23 10:54:48 +02:00
/ * *
* Add attributes to the parent element of a text node ,
* or the element of an attribute node .
* /
function addAttributes ( section , element , previousElement , separatorElementAttributes , separatorSectionAttributes ) {
if ( element != null && element . childNodes != undefined && element . childNodes . length > 0 ) {
var previousParentElement = element ;
for ( var i = 0 ; i < element . childNodes . length ; i ++ ) {
var childElement = element . childNodes [ i ] ;
if ( i > 0 ) {
var j = i - 1 ;
while ( j >= 0 ) {
var aPreviousChildElement = element . childNodes [ j ] ;
if ( typeof aPreviousChildElement . setAttribute == 'function' && aPreviousChildElement . tagName != "BR" ) {
previousParentElement = aPreviousChildElement ;
break ;
}
j = j - 1 ;
2013-11-28 22:10:23 +01:00
}
2013-11-27 22:48:01 +01:00
}
2020-04-23 10:54:48 +02:00
var parentSection = section ;
if ( childElement . nodeName == "section" ) {
parentSection = childElement ;
previousParentElement = childElement ;
}
if ( typeof childElement . setAttribute == 'function' || childElement . nodeType == Node . COMMENT _NODE ) {
addAttributes ( parentSection , childElement , previousParentElement , separatorElementAttributes , separatorSectionAttributes ) ;
}
2013-11-24 21:27:30 +01:00
}
}
2013-10-24 22:37:55 +02:00
2020-04-23 10:54:48 +02:00
if ( element . nodeType == Node . COMMENT _NODE ) {
if ( addAttributeInElement ( element , previousElement , separatorElementAttributes ) == false ) {
addAttributeInElement ( element , section , separatorSectionAttributes ) ;
}
2020-04-15 10:23:51 +02:00
}
2013-08-24 16:39:15 +02:00
}
2013-08-23 23:49:19 +02:00
2020-04-23 10:54:48 +02:00
/ * *
* Converts any current data - markdown slides in the
* DOM to HTML .
* /
function convertSlides ( ) {
2016-12-08 10:41:55 +01:00
2020-04-23 10:54:48 +02:00
var sections = deck . getRevealElement ( ) . querySelectorAll ( '[data-markdown]:not([data-markdown-parsed])' ) ;
2016-12-08 10:41:55 +01:00
2020-04-23 10:54:48 +02:00
[ ] . slice . call ( sections ) . forEach ( function ( section ) {
2016-12-08 10:41:55 +01:00
2020-04-23 10:54:48 +02:00
section . setAttribute ( 'data-markdown-parsed' , true )
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
var notes = section . querySelector ( 'aside.notes' ) ;
var markdown = getMarkdownFromSlide ( section ) ;
2013-09-06 14:40:43 +02:00
2020-04-23 10:54:48 +02:00
section . innerHTML = marked ( markdown ) ;
addAttributes ( section , section , null , section . getAttribute ( 'data-element-attributes' ) ||
section . parentNode . getAttribute ( 'data-element-attributes' ) ||
DEFAULT _ELEMENT _ATTRIBUTES _SEPARATOR ,
section . getAttribute ( 'data-attributes' ) ||
section . parentNode . getAttribute ( 'data-attributes' ) ||
DEFAULT _SLIDE _ATTRIBUTES _SEPARATOR ) ;
2013-09-06 14:40:43 +02:00
2020-04-23 10:54:48 +02:00
// If there were notes, we need to re-add them after
// having overwritten the section's HTML
if ( notes ) {
section . appendChild ( notes ) ;
}
} ) ;
return Promise . resolve ( ) ;
}
2013-01-29 23:49:17 +01:00
2020-04-23 10:54:48 +02:00
return {
id : 'markdown' ,
/ * *
* Starts processing and converting Markdown within the
* current reveal . js deck .
* /
init : function ( reveal ) {
deck = reveal ;
2020-04-27 10:43:56 +02:00
let renderer = new marked . Renderer ( ) ;
renderer . code = ( code , language ) => {
// Off by default
let lineNumbers = '' ;
// Users can opt in to show line numbers and highlight
// specific lines.
// ```javascript [] show line numbers
// ```javascript [1,4-8] highlights lines 1 and 4-8
if ( CODE _LINE _NUMBER _REGEX . test ( language ) ) {
lineNumbers = language . match ( CODE _LINE _NUMBER _REGEX ) [ 1 ] . trim ( ) ;
lineNumbers = ` data-line-numbers=" ${ lineNumbers } " ` ;
language = language . replace ( CODE _LINE _NUMBER _REGEX , '' ) . trim ( ) ;
}
return ` <pre><code ${ lineNumbers } class=" ${ language } "> ${ code } </code></pre> ` ;
} ;
marked . setOptions ( {
renderer ,
... deck . getConfig ( ) . markdown
} ) ;
2020-04-23 10:54:48 +02:00
return processSlides ( deck . getRevealElement ( ) ) . then ( convertSlides ) ;
} ,
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
// TODO: Do these belong in the API?
processSlides : processSlides ,
convertSlides : convertSlides ,
slidify : slidify ,
marked : marked
}
} ;
2019-03-01 21:28:52 +01:00
2020-04-23 10:54:48 +02:00
export default Plugin ;