Tweak notebooks for build

Fix other.ipynb notebook
Add notebook still one warning
pull/1255/head
Carol Willing 10 years ago
parent a13bff8850
commit 4f13fa7a9c

@ -30,7 +30,9 @@
},
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"collapsed": false
},
"source": [
"* [What is the Jupyter Notebook](What is the Jupyter Notebook.ipynb)\n",
"* [Notebook Basics](Notebook Basics.ipynb)\n",
@ -49,7 +51,9 @@
},
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"collapsed": false
},
"source": [
"* [Importing Notebooks](Importing Notebooks.ipynb)\n",
"* [Connecting with the Qt Console](Connecting with the Qt Console.ipynb)\n",
@ -73,7 +77,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.0"
"version": "3.5.1"
}
},
"nbformat": 4,

@ -515,7 +515,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.0"
"version": "3.5.1"
}
},
"nbformat": 4,

@ -555,19 +555,28 @@
" - `Medium`\n",
" - `Hard`\n",
" \n",
"We will use it to customiZe the output of the converted notebook depending on the tag on each cell"
"We will use it to customize the output of the converted notebook depending on the tag on each cell"
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"%load soln/celldiff.js"
"# %load soln/celldiff.js"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
@ -586,7 +595,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.3"
"version": "3.5.1"
}
},
"nbformat": 4,

@ -175,25 +175,29 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Github flavored markdown (GFM)"
"## GitHub flavored markdown"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The Notebook webapp support Github flavored markdown meaning that you can use triple backticks for code blocks \n",
"<pre>\n",
"```python\n",
"print \"Hello World\"\n",
"```\n",
"The Notebook webapp supports Github flavored markdown meaning that you can use triple backticks for code blocks:\n",
"\n",
"```javascript\n",
"console.log(\"Hello World\")\n",
"```\n",
"</pre>\n",
" <pre>\n",
" ```python\n",
" print \"Hello World\"\n",
" ```\n",
" </pre>\n",
"\n",
" <pre>\n",
" ```javascript\n",
" console.log(\"Hello World\")\n",
" ```\n",
" </pre>\n",
"\n",
"Gives:\n",
"\n",
"Gives \n",
"```python\n",
"print \"Hello World\"\n",
"```\n",
@ -202,19 +206,23 @@
"console.log(\"Hello World\")\n",
"```\n",
"\n",
"And a table like this : \n",
"And a table like this: \n",
"\n",
"<pre>\n",
"| This | is |\n",
"|------|------|\n",
"| a | table| \n",
"</pre>\n",
" <pre>\n",
" ```\n",
"\n",
" | This | is |\n",
" |------|------|\n",
" | a | table| \n",
"\n",
" ```\n",
" </pre>\n",
"\n",
"A nice Html Table\n",
"A nice HTML Table:\n",
"\n",
"| This | is |\n",
"|------|------|\n",
"| a | table| "
"| a | table| \n"
]
},
{
@ -314,7 +322,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.3"
"version": "3.5.1"
}
},
"nbformat": 4,

@ -4,6 +4,8 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Other notebook\n",
"\n",
"This notebook just defines `bar`"
]
},
@ -36,7 +38,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.2"
"version": "3.5.1"
}
},
"nbformat": 4,

@ -57,10 +57,17 @@ The Jupyter notebook
examples/Notebook/Running Code
examples/Notebook/Working With Markdown Cells
examples/Notebook/Custom Keyboard Shortcuts
examples/Notebook/JavaScript Notebook Extensions
examples/Notebook/Importing Notebooks
examples/Notebook/Connecting with the Qt Console
examples/Notebook/Typesetting Equations
.. toctree::
:hidden:
examples/Notebook/nbpackage/mynotebook.ipynb
examples/Notebook/nbpackage/nbs/other.ipynb
.. toctree::
:maxdepth: 2
:caption: About Jupyter Notebook

Loading…
Cancel
Save