diff --git a/docs/source/examples/Notebook/Importing Notebooks.ipynb b/docs/source/examples/Notebook/Importing Notebooks.ipynb index a7cdbcbce..ee42ad526 100644 --- a/docs/source/examples/Notebook/Importing Notebooks.ipynb +++ b/docs/source/examples/Notebook/Importing Notebooks.ipynb @@ -344,7 +344,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "So my notebook has a heading cell and some code cells,\n", + "So my notebook has some code cells,\n", "one of which contains some IPython syntax.\n", "\n", "Let's see what happens when we import it" diff --git a/docs/source/examples/Notebook/Notebook Basics.ipynb b/docs/source/examples/Notebook/Notebook Basics.ipynb index 94df61b59..aa8419b1d 100644 --- a/docs/source/examples/Notebook/Notebook Basics.ipynb +++ b/docs/source/examples/Notebook/Notebook Basics.ipynb @@ -194,7 +194,7 @@ "source": [ "The second idea of mouse based navigation is that **cell actions usually apply to the currently selected cell**. Thus if you want to run the code in a cell, you would select it and click the button in the toolbar or the \"Cell:Run\" menu item. Similarly, to copy a cell you would select it and click the button in the toolbar or the \"Edit:Copy\" menu item. With this simple pattern, you should be able to do most everything you need with the mouse.\n", "\n", - "Markdown and heading cells have one other state that can be modified with the mouse. These cells can either be rendered or unrendered. When they are rendered, you will see a nice formatted representation of the cell's contents. When they are unrendered, you will see the raw text source of the cell. To render the selected cell with the mouse, click the button in the toolbar or the \"Cell:Run\" menu item. To unrender the selected cell, double click on the cell." + "Markdown cells have one other state that can be modified with the mouse. These cells can either be rendered or unrendered. When they are rendered, you will see a nice formatted representation of the cell's contents. When they are unrendered, you will see the raw text source of the cell. To render the selected cell with the mouse, click the button in the toolbar or the \"Cell:Run\" menu item. To unrender the selected cell, double click on the cell." ] }, { diff --git a/docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb b/docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb index a4cec0e33..af9b187fc 100644 --- a/docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb +++ b/docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb @@ -79,7 +79,6 @@ "* See the results of computations with **rich media representations**, such as HTML, LaTeX, PNG, SVG, PDF, etc.\n", "* Create and use **interactive JavaScript widgets**, which bind interactive user interface controls and visualizations to reactive kernel side computations.\n", "* Author **narrative text** using the [Markdown](https://daringfireball.net/projects/markdown/) markup language.\n", - "* Build **hierarchical documents** that are organized into sections with different levels of headings.\n", "* Include mathematical equations using **LaTeX syntax in Markdown**, which are rendered in-browser by [MathJax](http://www.mathjax.org/)." ] }, diff --git a/docs/source/notebook.rst b/docs/source/notebook.rst index f50721018..9bbb7bdfc 100644 --- a/docs/source/notebook.rst +++ b/docs/source/notebook.rst @@ -208,15 +208,14 @@ operations within the notebook, by clicking on an icon. Structure of a notebook document -------------------------------- -The notebook consists of a sequence of cells. A cell is a multiline -text input field, and its contents can be executed by using -:kbd:`Shift-Enter`, or by clicking either the "Play" button the toolbar, or -`Cell | Run` in the menu bar. The execution behavior of a cell is determined -the cell's type. There are four types of cells: **code cells**, **markdown -cells**, **raw cells** and **heading cells**. Every cell starts off -being a **code cell**, but its type can be changed by using a drop-down on the -toolbar (which will be "Code", initially), or via :ref:`keyboard shortcuts -`. +The notebook consists of a sequence of cells. A cell is a multiline text input +field, and its contents can be executed by using :kbd:`Shift-Enter`, or by +clicking either the "Play" button the toolbar, or `Cell | Run` in the menu bar. +The execution behavior of a cell is determined the cell's type. There are four +types of cells: **code cells**, **markdown cells**, and **raw cells**. Every +cell starts off being a **code cell**, but its type can be changed by using a +drop-down on the toolbar (which will be "Code", initially), or via +:ref:`keyboard shortcuts `. For more information on the different things you can do in a notebook, see the `collection of examples @@ -250,6 +249,11 @@ called *Markdown cells*. The Markdown language provides a simple way to perform this text markup, that is, to specify which parts of the text should be emphasized (italics), bold, form lists, etc. +If you want to provide structure for your document, you can use markdown +headings. Markdown headings consist of 1 to 6 hash # signs ``#`` followed by a +space and the title of your section. The markdown heading will be converted +to a clickable link for a section of the notebook. It is also used as a hint +when exporting to other document formats, like PDF. When a Markdown cell is executed, the Markdown code is converted into the corresponding formatted rich text. Markdown allows arbitrary HTML code for @@ -286,17 +290,6 @@ destination format unmodified. For example, this allows you to type full LaTeX into a raw cell, which will only be rendered by LaTeX after conversion by nbconvert. -Heading cells -~~~~~~~~~~~~~ - -If you want to provide structure for your document, you can use markdown -headings. Markdown headings consist of 1 to 6 hash # signs ``#`` followed by a -space and the title of your section. The markdown heading will be converted -to a clickable link for a section of the notebook. It is also used as a hint -when exporting to other document formats, like PDF. -We recommend using only one markdown header in a cell and limit the cell's -content to the header text. For flexibility of text format conversion, we -suggest placing additional text in the next notebook cell. Basic workflow --------------