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));