瀏覽代碼

Add section on output rendering

Carol Willing 8 年之前
父節點
當前提交
8f4c95991b
共有 1 個文件被更改,包括 4 次插入0 次删除
  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.
 cell list.
 
 
 #### Higher level actions using NotebookActions
 #### Higher level actions using NotebookActions
+
 Higher-level actions are contained in the
 Higher-level actions are contained in the
 [NotebookActions](http://jupyter.org/jupyterlab/modules/_notebook_notebook_actions_.notebookactions.html) namespace,
 [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
 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.
 the next cell, merge or split cells at the cursor, delete selected cells, etc.
 
 
 #### Widget hierarchy
 #### Widget hierarchy
+
 A Notebook widget contains a list of [cell widgets](http://jupyter.org/jupyterlab/modules/_notebook_cells_widget_.html),
 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.
 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)
 notebook-specific [RenderMime](http://jupyter.org/jupyterlab/classes/_rendermime_index_.rendermime.html)
 object to render `display_data` output messages.
 object to render `display_data` output messages.
 
 
+#### Rendering output messages
+
 A **Rendermime plugin** provides a pluggable system for rendering output
 A **Rendermime plugin** provides a pluggable system for rendering output
 messages. Default renderers are provided for markdown, html, images, text, etc.
 messages. Default renderers are provided for markdown, html, images, text, etc.
 Extensions can register renderers to be used across the entire application by
 Extensions can register renderers to be used across the entire application by