Skip to content
Snippets Groups Projects
Commit d010a068 authored by Maurice Herné's avatar Maurice Herné
Browse files

Enable attachments for NotebookMarkdownCellModel

parent 5d964bb9
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,7 @@ class NotebookMarkdownCellModel(BaseNotebookCellModel): ...@@ -85,6 +85,7 @@ class NotebookMarkdownCellModel(BaseNotebookCellModel):
"Notebook markdown cell." "Notebook markdown cell."
""" """
cell_type: Literal["markdown"] cell_type: Literal["markdown"]
attachments: Optional[dict] = Field(default=None, description="Media attachments (e.g. inline images), stored as mimebundle keyed by filename.")
class NotebookCodeCellModel(BaseNotebookCellModel): class NotebookCodeCellModel(BaseNotebookCellModel):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment