Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/bfritscher/reveal.js into…
Browse files Browse the repository at this point in the history
… dev
  • Loading branch information
hakimel committed Jul 7, 2015
2 parents 852fea4 + 9645a76 commit 399d4f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugin/markdown/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@

// strip leading whitespace so it isn't evaluated as code
var text = ( template || section ).textContent;

// restore script end tag
text = text.replace(/__SCRIPT_END__/g, '</script>');
var leadingWs = text.match( /^\n?(\s*)/ )[1].length,
leadingTabs = text.match( /^\n?(\t*)/ )[1].length;

Expand Down Expand Up @@ -114,7 +115,8 @@
if( notesMatch.length === 2 ) {
content = notesMatch[0] + '<aside class="notes" data-markdown>' + notesMatch[1].trim() + '</aside>';
}

//handle script end tag bug
content = content.replace(/<\/script>/g, '__SCRIPT_END__');
return '<script type="text/template">' + content + '</script>';

}
Expand Down

0 comments on commit 399d4f6

Please sign in to comment.