From 93bbf2ce1961bb1b8b6d3c5ec2a875182df413a5 Mon Sep 17 00:00:00 2001 From: Juergen Hasch Date: Thu, 21 Aug 2014 17:53:16 +0200 Subject: [PATCH] Remove debug output Forgot to remove --- usability/python-markdown.js | 1 - 1 file changed, 1 deletion(-) diff --git a/usability/python-markdown.js b/usability/python-markdown.js index 94de60d..bbc3bfc 100644 --- a/usability/python-markdown.js +++ b/usability/python-markdown.js @@ -90,7 +90,6 @@ var pymd_extension = (function() { var text = this.get_text(); var math = null; if (text === "") { text = this.placeholder; } - console.log("text:",text); text = execute_python(this,text); var text_and_math = IPython.mathjaxutils.remove_math(text); text = text_and_math[0];