Browse Source

Add section on output rendering

Carol Willing 8 years ago
parent
commit
8f4c95991b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tutorial/notebook.md

+ 4 - 0
tutorial/notebook.md

@@ -65,12 +65,14 @@ The NotebookModel cell list provides ways to do fine-grained changes to the
 cell list.
 
 #### Higher level actions using NotebookActions
+
 Higher-level actions are contained in the
 [NotebookActions](http://jupyter.org/jupyterlab/modules/_notebook_notebook_actions_.notebookactions.html) namespace,
 which has functions, when given a notebook widget, to run a cell and select
 the next cell, merge or split cells at the cursor, delete selected cells, etc.
 
 #### Widget hierarchy
+
 A Notebook widget contains a list of [cell widgets](http://jupyter.org/jupyterlab/modules/_notebook_cells_widget_.html),
 corresponding to the cell models in its cell list.
 
@@ -88,6 +90,8 @@ list in the corresponding code cell model. An OutputAreaWidget uses a
 notebook-specific [RenderMime](http://jupyter.org/jupyterlab/classes/_rendermime_index_.rendermime.html)
 object to render `display_data` output messages.
 
+#### Rendering output messages
+
 A **Rendermime plugin** provides a pluggable system for rendering output
 messages. Default renderers are provided for markdown, html, images, text, etc.
 Extensions can register renderers to be used across the entire application by