HTML output cells are now styled with the rendered_html class.

pull/37/head
Brian E. Granger 15 years ago
parent c72b41883f
commit 058c0b4767

@ -252,7 +252,7 @@ var IPython = (function (IPython) {
CodeCell.prototype.append_html = function (html, element) {
element = element || this.element.find("div.output");
var toinsert = $("<div/>").addClass("output_html");
var toinsert = $("<div/>").addClass("output_html rendered_html");
toinsert.append(html);
element.append(toinsert);
return element;

Loading…
Cancel
Save