Skip to content

Commit 6f68e65

Browse files
committed
Bump to v0.2.5
1 parent 27ef2f3 commit 6f68e65

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Notebook.js
1+
# notebook.js `v0.2.5`
22

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

@@ -59,3 +59,9 @@ Notebook.js currently doesn't support MathJax. Implementation suggestions welcom
5959
## Styling Rendered Notebooks
6060

6161
The HTML rendered by notebook.js (intentionally) does not contain any styling. But each key element has fairly straightfoward CSS classes that make styling your notebooks a cinch. See [NBPreview](https://github.com/jsvine/nbpreview/css) for an example implementation.
62+
63+
## Thanks
64+
65+
Many thanks to the following users for catching bugs, fixing typos, and proposing useful features:
66+
67+
- [@bradhowes](https://github.com/bradhowes)

notebook.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
// notebook.js 0.2.4
1+
// notebook.js 0.2.5
22
// http://github.com/jsvine/notebookjs
3-
// (c) 2014-2015 Jeremy Singer-Vine
43
// notebook.js may be freely distributed under the MIT license.
54
(function () {
65
var root = this;
7-
var VERSION = "0.2.4";
6+
var VERSION = "0.2.5";
87

98
// Get browser or JSDOM document
109
var doc = root.document || require("jsdom").jsdom();

notebook.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
},
1414
"repository" : {"type": "git", "url": "git://github.com/jsvine/notebookjs.git"},
1515
"main" : "notebook.js",
16-
"version" : "0.2.3"
16+
"version" : "0.2.5"
1717
}

0 commit comments

Comments
 (0)