Skip to content

Commit 02f0b45

Browse files
committed
Bump to 0.6.7 [upgrading marked]
See: #38
1 parent 4f94e50 commit 02f0b45

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# notebook.js `v0.6.6`
1+
# notebook.js `v0.6.7`
22

33
Notebook.js parses raw [Jupyter](http://jupyter.org/)/[IPython](http://ipython.org/) notebooks, and lets you render them as HTML. See a __[working demo here](https://jsvine.github.io/nbpreview/)__.
44

notebook.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// http://github.com/jsvine/notebookjs
22
// notebook.js may be freely distributed under the MIT license.
33
(function () {
4-
var VERSION = "0.6.6";
4+
var VERSION = "0.6.7";
55
var root = this;
66
var isBrowser = root.window !== undefined;
77
var doc;
@@ -109,7 +109,7 @@
109109
nb.display = {};
110110
nb.display.text = function (text) {
111111
var el = makeElement("pre", [ "text-output" ]);
112-
el.innerHTML = escapeHTML(joinText(text));
112+
el.innerHTML = nb.highlighter(nb.ansi(joinText(text)), el);
113113
return el;
114114
};
115115
nb.display["text/plain"] = nb.display.text;

notebook.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notebookjs",
3-
"version": "0.6.6",
3+
"version": "0.6.7",
44
"description": "Parse and render Jupyter/IPython notebooks.",
55
"main": "notebook.js",
66
"homepage": "https://github.com/jsvine/notebookjs",

0 commit comments

Comments
 (0)