aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/js/reveal.js b/js/reveal.js
index f9590d5..a4a71db 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -235,18 +235,6 @@ var Reveal = (function(){
dom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );
}
- //Auto scape code blocks
- var cblocks = document.querySelectorAll("pre code");
-
- if(cblocks.length) {
- for(var i=0, len=cblocks.length; i<len; i++) {
- var thisDom = cblocks[i];
- var html = thisDom.innerHTML;
- html = html.replace(/</g,"&lt;").replace(/>/g,"&gt;");
- thisDom.innerHTML = html;
- }
- }
-
}
/**