##// END OF EJS Templates
address review from takluyver...
address review from takluyver - various typos - discuss multi-line strings in nbformat doc - testing cleanup - py3compat simplification - don't use setdefault when composing notebook nodes - mime-type fix in svg2pdf

File last commit:

r18596:2d590459
r18602:2377691a
Show More
__init__.py
19 lines | 555 B | text/x-python | PythonLexer
MinRK
first complete pass on v4...
r18573 """The main API for the v4 notebook format."""
MinRK
copy nbformat.v3 to v4
r18568
MinRK
first complete pass on v4...
r18573 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
MinRK
copy nbformat.v3 to v4
r18568
from .nbbase import (
MinRK
update nbformat.current to v4
r18579 NotebookNode, from_dict,
MinRK
first complete pass on v4...
r18573 nbformat, nbformat_minor, nbformat_schema,
MinRK
remove heading cells in v4
r18596 new_code_cell, new_markdown_cell, new_notebook,
MinRK
add nbformat.output_from_msg...
r18582 new_output, output_from_msg,
MinRK
copy nbformat.v3 to v4
r18568 )
from .nbjson import reads as reads_json, writes as writes_json
from .nbjson import reads as read_json, writes as write_json
from .nbjson import to_notebook as to_notebook_json
from .convert import downgrade, upgrade