##// END OF EJS Templates
use `$.text` to put latex on the page...
Min RK -
r22736:61c99ede 2.x
parent child Browse files
Show More
@@ -678,7 +678,7 b' var IPython = (function (IPython) {'
678 // be on the page.
678 // be on the page.
679 var type = 'text/latex';
679 var type = 'text/latex';
680 var toinsert = this.create_output_subarea(md, "output_latex", type);
680 var toinsert = this.create_output_subarea(md, "output_latex", type);
681 toinsert.append(latex);
681 toinsert.text(latex);
682 element.append(toinsert);
682 element.append(toinsert);
683 return toinsert;
683 return toinsert;
684 };
684 };
General Comments 0
You need to be logged in to leave comments. Login now