diff --git a/IPython/frontend/html/notebook/static/js/codecell.js b/IPython/frontend/html/notebook/static/js/codecell.js index 883ec9c11..e58eacc42 100644 --- a/IPython/frontend/html/notebook/static/js/codecell.js +++ b/IPython/frontend/html/notebook/static/js/codecell.js @@ -252,7 +252,7 @@ var IPython = (function (IPython) { CodeCell.prototype.append_html = function (html, element) { element = element || this.element.find("div.output"); - var toinsert = $("
").addClass("output_html"); + var toinsert = $("").addClass("output_html rendered_html"); toinsert.append(html); element.append(toinsert); return element;