Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new attachment property for cells. #21

Merged
merged 4 commits into from
Mar 8, 2016
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions docs/format_description.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ stream output
The ``stream`` key was changed to ``name`` to match
the stream message.

.. _display-data:

display_data
************
Expand Down Expand Up @@ -291,6 +292,28 @@ regardless of format.
"source" : "[some nbformat output text]"
}


Cell attachments
----------------
Markdown and raw cells can have a number of attachments, typically inline
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add a clear, explicit statement that attachments may be undefined, and add a

.. versionadded:: 4.1

images that can be referenced in the markdown content of a cell. The attachment
dictionary of a cell contains a set of mime-bundles (see :ref:`display_data`)
keyed by filename that represents the files attached to the cell.


.. sourcecode:: python

{
"cell_type" : "markdown",
"metadata" : {},
"source" : ["Here is an *inline* image ![inline image](attachment:test.png)"],
"attachments" : {
"test.png": {
"image/png" : ["base64-encoded-png-data"],
},
},
}

Backward-compatible changes
===========================

Expand Down
2 changes: 1 addition & 1 deletion nbformat/v4/nbbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# Change this when incrementing the nbformat version
nbformat = 4
nbformat_minor = 0
nbformat_minor = 1
nbformat_schema = 'nbformat.v4.schema.json'


Expand Down
12 changes: 12 additions & 0 deletions nbformat/v4/nbformat.v4.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
"tags": {"$ref": "#/definitions/misc/metadata_tags"}
}
},
"attachments": {"$ref": "#/definitions/misc/attachments"},
"source": {"$ref": "#/definitions/misc/source"}
}
},
Expand All @@ -136,6 +137,7 @@
},
"additionalProperties": true
},
"attachments": {"$ref": "#/definitions/misc/attachments"},
"source": {"$ref": "#/definitions/misc/source"}
}
},
Expand Down Expand Up @@ -327,6 +329,16 @@
"pattern": "^[^,]+$"
}
},
"attachments": {
"description": "Media attachments (e.g. inline images), stored as mimebundle keyed by filename.",
"type": "object",
"patternProperties": {
".*": {
"description": "The attachment's data stored as a mimebundle.",
"$ref": "#/definitions/misc/mimebundle"
}
}
},
"source": {
"description": "Contents of the cell, represented as an array of lines.",
"$ref": "#/definitions/misc/multiline_string"
Expand Down