Skip to content

Commit e06c1ed

Browse files
committed
content/jupyter: Minor updates and links
1 parent 49f615f commit e06c1ed

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

content/jupyter.ipynb

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@
9595
"There are different types of cells: primarily **code** cells and **markdown** cells. You can switch between them with the menu bar above. Code cells run whatever language your notebook uses. Markdown is a lightweight way of giving *style* to `text` - you can check out [this reference](https://commonmark.org/help/). For example the previous sentence is:\n",
9696
"\n",
9797
"```none\n",
98-
"Markdown is a lightweight way of giving *style* to `text` - you can check out [this reference](https://commonmark.org/help/).\n",
98+
"Markdown is a lightweight way of giving *style* to `text` - you \n",
99+
"can check out [this reference](https://commonmark.org/help/).\n",
99100
"```\n",
100101
"\n",
101102
"![notebook UI](img/jupyter/notebook-ui.png)"
@@ -200,7 +201,7 @@
200201
"cell_type": "markdown",
201202
"metadata": {},
202203
"source": [
203-
"In addition to raw cells, there are **magics**, which exist outside of Python. They are a property of the runtime itself (in Python's case, they come from **IPython**. For example, the following cell magic `%%bash` turns the cell into a shell script (may not work on all operating systems):"
204+
"In addition to raw cells, there are **magics**, which exist outside of Python. They are a property of the runtime itself (in Python's case, they come from **IPython**. For example, the following cell magic [%%bash](https://ipython.readthedocs.io/en/stable/interactive/magics.html#cellmagic-bash) turns the cell into a shell script (may not work on all operating systems):"
204205
]
205206
},
206207
{
@@ -247,7 +248,7 @@
247248
"\n",
248249
" 3. Make a Markdown cell above your code cell and give it a title and some description of your function. Use the [reference](https://commonmark.org/help/) to add a heading, bullet list, and some (bold, italic, or inline code)\n",
249250
"\n",
250-
" 4. Use the ``%%timeit`` magic function to time your Fibonacci\n",
251+
" 4. Use the [%%timeit](https://ipython.readthedocs.io/en/stable/interactive/magics.html#magic-timeit) magic function to time your Fibonacci\n",
251252
" function.\n",
252253
"\n",
253254
" 5. Again using ``%%timeit``, figure out the fastest way to sum the\n",

0 commit comments

Comments
 (0)