diff options
author | Hakim El Hattab | 2013-03-04 16:11:26 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-03-04 16:11:26 -0500 |
commit | 3a8e6dd4baf6213051a1bb5dca60e2d045928e0d (patch) | |
tree | 482edb6f7c7690b26e72fb1c648e4cfd5fb48a76 | |
parent | a9bef856b049482ef4c83fc426cc7eee0f040984 (diff) | |
parent | 34afc564cd58142656773eb04626a001c9527024 (diff) |
Merge branch 'patch-1' of https://github.com/ynonp/unix2-bash-scripts-slides into dev
-rw-r--r-- | plugin/markdown/markdown.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js index 39e1168..b6b5a9b 100644 --- a/plugin/markdown/markdown.js +++ b/plugin/markdown/markdown.js @@ -26,7 +26,11 @@ return text; }; - + + var twrap = function(el) { + return '<script type="text/template">' + el + '</script>'; + }; + var slidifyMarkdown = function(markdown, separator, vertical) { separator = separator || '^\n---\n$'; @@ -74,8 +78,8 @@ // flatten the hierarchical stack, and insert <section data-markdown> tags for( var k = 0, klen = sectionStack.length; k < klen; k++ ) { markdownSections += typeof sectionStack[k] === 'string' - ? '<section data-markdown>' + sectionStack[k] + '</section>' - : '<section><section data-markdown>' + sectionStack[k].join('</section><section data-markdown>') + '</section></section>'; + ? '<section data-markdown>' + twrap( sectionStack[k] ) + '</section>' + : '<section><section data-markdown>' + sectionStack[k].map(twrap).join('</section><section data-markdown>') + '</section></section>'; } return markdownSections; |