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 17:44:37 +02:00
( function ( ) {
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 .
* /
function createMarkdownSlide ( data ) {
var content = data . content || data ;
if ( data . notes ) {
content += '<aside class="notes" data-markdown>' + data . notes + '</aside>' ;
}
return '<script type="text/template">' + content + '</script>' ;
}
/ * *
* Parses a data string into multiple slides based
* on the passed in separator arguments .
* /
function slidifyMarkdown ( 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' ) ,
horizontalSeparatorRegex = new RegExp ( options . separator ) ,
notesSeparatorRegex = new RegExp ( options . notesSeparator , 'mgi' ) ;
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
noteMatch ,
lastIndex = 0 ,
isHorizontal ,
wasHorizontal = true ,
content ,
2013-08-24 16:03:34 +02:00
notes ,
2013-08-23 23:49:19 +02:00
slide ,
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 ) ;
noteMatch = content . split ( notesSeparatorRegex ) ;
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
if ( noteMatch . length === 2 ) {
content = noteMatch [ 0 ] ;
2013-08-24 16:03:34 +02:00
notes = noteMatch [ 1 ] . trim ( ) ;
2013-08-23 23:49:19 +02:00
}
2013-01-29 23:49:17 +01:00
2013-08-23 23:49:19 +02:00
slide = {
content : content ,
2013-08-24 16:03:34 +02:00
notes : notes || ''
2013-08-23 23:49:19 +02:00
} ;
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 16:03:34 +02:00
sectionStack . push ( slide ) ;
2013-08-24 16:39:15 +02:00
}
else {
2013-08-23 23:49:19 +02:00
// add to vertical stack
2013-08-24 16:03:34 +02:00
sectionStack [ sectionStack . length - 1 ] . push ( slide ) ;
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
for ( var k = 0 , klen = sectionStack . length ; k < klen ; k ++ ) {
// vertical
if ( sectionStack [ k ] . propertyIsEnumerable ( length ) && typeof sectionStack [ k ] . splice === 'function' ) {
2013-08-24 16:39:15 +02:00
markdownSections += '<section ' + options . attributes + '>' +
'<section data-markdown>' + sectionStack [ k ] . map ( createMarkdownSlide ) . join ( '</section><section data-markdown>' ) + '</section>' +
2013-08-23 23:49:19 +02:00
'</section>' ;
2013-08-24 16:39:15 +02:00
}
else {
markdownSections += '<section ' + options . attributes + ' data-markdown>' + createMarkdownSlide ( sectionStack [ k ] ) + '</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
}
function loadExternalMarkdown ( ) {
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-23 23:49:19 +02:00
for ( var j = 0 , jlen = sections . length ; j < jlen ; j ++ ) {
2013-01-30 00:09:02 +01:00
2013-08-23 23:49:19 +02:00
section = sections [ j ] ;
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
section . outerHTML = slidifyMarkdown ( xhr . responseText , {
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-24 16:39:15 +02:00
section . outerHTML = slidifyMarkdown ( getMarkdownFromSlide ( section ) , {
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-24 16:39:15 +02:00
function convertMarkdownToHTML ( ) {
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-24 16:39:15 +02:00
loadExternalMarkdown ( ) ;
convertMarkdownToHTML ( ) ;
2013-01-29 23:49:17 +01:00
} ) ( ) ;