mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-30 12:11:32 +08:00
HTML output cells are now styled with the rendered_html class.
This commit is contained in:
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…
Reference in New Issue
Block a user