From 29698db9c12525aaf4380ad341461e823e5c9097 2013-07-18 16:48:27
From: Matthias BUSSONNIER <bussonniermatthias@gmail.com>
Date: 2013-07-18 16:48:27
Subject: [PATCH] add mising semicolon

---

diff --git a/IPython/html/static/notebook/js/textcell.js b/IPython/html/static/notebook/js/textcell.js
index 810cf72..699fc9e 100644
--- a/IPython/html/static/notebook/js/textcell.js
+++ b/IPython/html/static/notebook/js/textcell.js
@@ -317,8 +317,8 @@ var IPython = (function (IPython) {
             var text = this.get_text();
             if (text === "") { text = this.placeholder; }
             var text_math = IPython.mathjaxutils.remove_math(text);
-            var text = text_math[0]
-            var math = text_math[1]
+            var text = text_math[0];
+            var math = text_math[1];
             var html = marked.parser(marked.lexer(text));
             html = $(IPython.mathjaxutils.replace_math(html, math));
             // links in markdown cells should open in new tabs