From 4ac086d477ec9790513441565bd65e2ae4fcd8fb Mon Sep 17 00:00:00 2001 From: Grant Nestor Date: Wed, 2 Aug 2017 06:57:36 -0700 Subject: [PATCH] Remove commented out old code --- notebook/static/notebook/js/outputarea.js | 1 - notebook/static/notebook/js/textcell.js | 1 - 2 files changed, 2 deletions(-) diff --git a/notebook/static/notebook/js/outputarea.js b/notebook/static/notebook/js/outputarea.js index 95e641281..e9e4d3ffd 100644 --- a/notebook/static/notebook/js/outputarea.js +++ b/notebook/static/notebook/js/outputarea.js @@ -710,7 +710,6 @@ define([ return start_tag + content + end_tag; }; marked(text, { renderer: renderer }, function (err, html) { - // marked(text, function (err, html) { html = mathjaxutils.replace_math(html, math); toinsert.append(html); }); diff --git a/notebook/static/notebook/js/textcell.js b/notebook/static/notebook/js/textcell.js index a49b938be..f70abd089 100644 --- a/notebook/static/notebook/js/textcell.js +++ b/notebook/static/notebook/js/textcell.js @@ -400,7 +400,6 @@ define([ return start_tag + content + end_tag; }; marked(text, { renderer: renderer }, function (err, html) { - // marked(text, function (err, html) { html = mathjaxutils.replace_math(html, math); html = security.sanitize_html(html); html = $($.parseHTML(html));