diff options
author | Amit Kotlovski | 2013-05-01 23:10:31 +0300 |
---|---|---|
committer | Amit Kotlovski | 2013-05-01 23:10:31 +0300 |
commit | 381da383d9020c0d2c15ebdf5fabe1cea5440519 (patch) | |
tree | ab8b32f52ff0d9c11d09d2de34e37c0f0b1106eb /plugin/markdown/markdown.js | |
parent | 247771e129f431fc751140d8da4c2fe60815a51f (diff) |
Replace the ShowDown Markdown engine with marked
Diffstat (limited to 'plugin/markdown/markdown.js')
-rwxr-xr-x | plugin/markdown/markdown.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js index 48fcfbd..473666b 100755 --- a/plugin/markdown/markdown.js +++ b/plugin/markdown/markdown.js @@ -2,8 +2,8 @@ // Modified by Hakim to handle Markdown indented with tabs (function(){ - if( typeof Showdown === 'undefined' ) { - throw 'The reveal.js Markdown plugin requires Showdown to be loaded'; + if( typeof marked === 'undefined' ) { + throw 'The reveal.js Markdown plugin requires marked to be loaded'; } var stripLeadingWhitespace = function(section) { @@ -175,7 +175,7 @@ var markdown = stripLeadingWhitespace(section); - section.innerHTML = (new Showdown.converter()).makeHtml(markdown); + section.innerHTML = marked(markdown); if( notes ) { section.appendChild( notes ); |