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 .
* /
2013-08-27 15:11:33 +02:00
( function ( root , factory ) {
if ( typeof exports === 'object' ) {
module . exports = factory ( require ( './marked' ) ) ;
}
else {
// Browser globals (root is window)
root . returnExports = factory ( root . marked ) ;
root . returnExports . processSlides ( ) ;
root . returnExports . convertSlides ( ) ;
}
} ( this , function ( marked ) {
2012-07-31 07:13:33 +02:00
2013-08-23 23:49:19 +02:00
if ( typeof marked === 'undefined' ) {
throw 'The reveal.js Markdown plugin requires marked to be loaded' ;
}
2013-06-25 13:15:22 +02:00
2013-08-23 23:49:19 +02:00
if ( typeof hljs !== 'undefined' ) {
marked . setOptions ( {
highlight : function ( lang , code ) {
return hljs . highlightAuto ( lang , code ) . value ;
}
} ) ;
}
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
/ * *
* Retrieves the markdown contents of a slide section
* element . Normalizes leading tabs / whitespace .
* /
function getMarkdownFromSlide ( section ) {
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
var template = section . querySelector ( 'script' ) ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +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
2013-08-23 23:49:19 +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
2013-08-23 23:49:19 +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' ) ;
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
return text ;
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
}
2013-08-23 23:49:19 +02:00
2013-08-24 16:39:15 +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 .
* /
2013-08-23 23:51:20 +02:00
function getForwardedAttributes ( section ) {
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
var attributes = section . attributes ;
var result = [ ] ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
for ( var i = 0 , len = attributes . length ; i < len ; i ++ ) {
var name = attributes [ i ] . name ,
value = attributes [ i ] . value ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
// disregard attributes that are used for markdown loading/parsing
if ( /data\-(markdown|separator|vertical|notes)/gi . test ( name ) ) continue ;
2013-07-23 17:31:30 +02:00
2013-08-23 23:49:19 +02:00
if ( value ) {
result . push ( name + '=' + value ) ;
}
else {
result . push ( name ) ;
}
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
return result . join ( ' ' ) ;
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
}
/ * *
* Helper function for constructing a markdown slide .
* /
2013-08-24 22:13:24 +02:00
function createMarkdownSlide ( content , options ) {
2013-08-24 16:39:15 +02:00
2013-08-24 22:13:24 +02:00
var notesMatch = content . split ( new RegExp ( options . notesSeparator , 'mgi' ) ) ;
2013-08-24 16:39:15 +02:00
2013-08-24 22:13:24 +02:00
if ( notesMatch . length === 2 ) {
content = notesMatch [ 0 ] + '<aside class="notes" data-markdown>' + notesMatch [ 1 ] . trim ( ) + '</aside>' ;
2013-08-24 16:39:15 +02:00
}
return '<script type="text/template">' + content + '</script>' ;
}
/ * *
* Parses a data string into multiple slides based
* on the passed in separator arguments .
* /
2013-08-27 15:11:33 +02:00
function slidify ( markdown , options ) {
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
options = options || { } ;
options . separator = options . separator || '^\n---\n$' ;
options . notesSeparator = options . notesSeparator || 'note:' ;
options . attributes = options . attributes || '' ;
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
var separatorRegex = new RegExp ( options . separator + ( options . verticalSeparator ? '|' + options . verticalSeparator : '' ) , 'mg' ) ,
2013-08-24 22:13:24 +02:00
horizontalSeparatorRegex = new RegExp ( options . separator ) ;
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
var matches ,
2013-08-23 23:49:19 +02:00
lastIndex = 0 ,
isHorizontal ,
wasHorizontal = true ,
content ,
2013-08-24 16:39:15 +02:00
sectionStack = [ ] ;
2013-08-23 23:49:19 +02:00
// iterate until all blocks between separators are stacked up
while ( matches = separatorRegex . exec ( markdown ) ) {
2013-08-24 16:03:34 +02:00
notes = null ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
// determine direction (horizontal by default)
isHorizontal = horizontalSeparatorRegex . test ( matches [ 0 ] ) ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
if ( ! isHorizontal && wasHorizontal ) {
// create vertical stack
sectionStack . push ( [ ] ) ;
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
// pluck slide content from markdown input
content = markdown . substring ( lastIndex , matches . index ) ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
if ( isHorizontal && wasHorizontal ) {
// add to horizontal stack
2013-08-24 22:13:24 +02:00
sectionStack . push ( content ) ;
2013-08-24 16:39:15 +02:00
}
else {
2013-08-23 23:49:19 +02:00
// add to vertical stack
2013-08-24 22:13:24 +02:00
sectionStack [ sectionStack . length - 1 ] . push ( content ) ;
2013-08-23 23:49:19 +02:00
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
lastIndex = separatorRegex . lastIndex ;
wasHorizontal = isHorizontal ;
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
// add the remaining slide
2013-08-24 16:03:34 +02:00
( wasHorizontal ? sectionStack : sectionStack [ sectionStack . length - 1 ] ) . push ( markdown . substring ( lastIndex ) ) ;
2013-01-29 23:49:17 +01:00
2013-08-24 16:39:15 +02:00
var markdownSections = '' ;
2013-08-23 23:49:19 +02:00
// flatten the hierarchical stack, and insert <section data-markdown> tags
2013-08-24 17:06:52 +02:00
for ( var i = 0 , len = sectionStack . length ; i < len ; i ++ ) {
2013-08-23 23:49:19 +02:00
// vertical
2013-08-24 17:06:52 +02:00
if ( sectionStack [ i ] . propertyIsEnumerable ( length ) && typeof sectionStack [ i ] . splice === 'function' ) {
2013-08-24 22:13:24 +02:00
markdownSections += '<section ' + options . attributes + '>' ;
sectionStack [ i ] . forEach ( function ( child ) {
markdownSections += '<section data-markdown>' + createMarkdownSlide ( child , options ) + '</section>' ;
} ) ;
markdownSections += '</section>' ;
2013-08-24 16:39:15 +02:00
}
else {
2013-08-24 22:13:24 +02:00
markdownSections += '<section ' + options . attributes + ' data-markdown>' + createMarkdownSlide ( sectionStack [ i ] , options ) + '</section>' ;
2013-08-23 23:49:19 +02:00
}
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
return markdownSections ;
2012-11-16 15:25:26 +01:00
2013-08-24 16:39:15 +02:00
}
2013-08-27 15:11:33 +02:00
/ * *
* Parses any current data - markdown slides , splits
* multi - slide markdown into separate sections and
* handles loading of external markdown .
* /
function processSlides ( ) {
2012-07-31 07:13:33 +02:00
2013-08-23 23:49:19 +02:00
var sections = document . querySelectorAll ( '[data-markdown]' ) ,
section ;
2013-01-29 23:49:17 +01:00
2013-08-24 17:06:52 +02:00
for ( var i = 0 , len = sections . length ; i < len ; i ++ ) {
2013-01-30 00:09:02 +01:00
2013-08-24 17:06:52 +02:00
section = sections [ i ] ;
2013-08-23 23:49:19 +02:00
if ( section . getAttribute ( 'data-markdown' ) . length ) {
var xhr = new XMLHttpRequest ( ) ,
url = section . getAttribute ( 'data-markdown' ) ;
datacharset = section . getAttribute ( 'data-charset' ) ;
// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes
if ( datacharset != null && datacharset != '' ) {
xhr . overrideMimeType ( 'text/html; charset=' + datacharset ) ;
}
xhr . onreadystatechange = function ( ) {
if ( xhr . readyState === 4 ) {
if ( xhr . status >= 200 && xhr . status < 300 ) {
2013-08-24 16:39:15 +02:00
2013-08-27 15:11:33 +02:00
section . outerHTML = slidify ( xhr . responseText , {
2013-08-24 16:39:15 +02:00
separator : section . getAttribute ( 'data-separator' ) ,
verticalSeparator : section . getAttribute ( 'data-vertical' ) ,
notesSeparator : section . getAttribute ( 'data-notes' ) ,
attributes : getForwardedAttributes ( section )
} ) ;
2013-08-23 23:49:19 +02:00
}
else {
2013-08-24 16:39:15 +02:00
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>' ;
2013-08-23 23:49:19 +02:00
}
}
} ;
xhr . open ( 'GET' , url , false ) ;
try {
xhr . send ( ) ;
}
catch ( e ) {
alert ( '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 ) ;
}
2013-08-24 16:39:15 +02:00
}
else if ( section . getAttribute ( 'data-separator' ) ) {
2013-08-23 23:49:19 +02:00
2013-08-27 15:11:33 +02:00
section . outerHTML = slidify ( getMarkdownFromSlide ( section ) , {
2013-08-24 16:39:15 +02:00
separator : section . getAttribute ( 'data-separator' ) ,
verticalSeparator : section . getAttribute ( 'data-vertical' ) ,
notesSeparator : section . getAttribute ( 'data-notes' ) ,
attributes : getForwardedAttributes ( section )
} ) ;
2013-08-23 23:49:19 +02:00
}
}
2013-08-24 16:39:15 +02:00
}
2013-08-23 23:49:19 +02:00
2013-08-27 15:11:33 +02:00
/ * *
* Converts any current data - markdown slides in the
* DOM to HTML .
* /
function convertSlides ( ) {
2013-08-23 23:49:19 +02:00
var sections = document . querySelectorAll ( '[data-markdown]' ) ;
2013-08-24 16:39:15 +02:00
for ( var i = 0 , len = sections . length ; i < len ; i ++ ) {
2013-08-23 23:49:19 +02:00
2013-08-24 16:39:15 +02:00
var section = sections [ i ] ;
2013-08-23 23:49:19 +02:00
2013-08-24 16:39:15 +02:00
var notes = section . querySelector ( 'aside.notes' ) ;
var markdown = getMarkdownFromSlide ( section ) ;
2013-08-23 23:49:19 +02:00
2013-08-24 16:39:15 +02:00
section . innerHTML = marked ( markdown ) ;
2013-08-23 23:49:19 +02:00
2013-08-24 16:39:15 +02:00
// If there were notes, we need to re-add them after
// having overwritten the section's HTML
if ( notes ) {
section . appendChild ( notes ) ;
}
2013-08-23 23:49:19 +02:00
}
2013-08-24 16:39:15 +02:00
}
2013-08-23 23:49:19 +02:00
2013-08-27 15:11:33 +02:00
return {
processSlides : processSlides ,
convertSlides : convertSlides ,
slidify : slidify
} ;
2013-01-29 23:49:17 +01:00
2013-08-27 15:11:33 +02:00
} ) ) ;