Skip to content

Commit 19c6824

Browse files
authored
Merge pull request ipython#58 from minrk/master
remove spaces from link targets
2 parents f3cbabc + 144c4fc commit 19c6824

File tree

15 files changed

+69
-69
lines changed

15 files changed

+69
-69
lines changed

Index.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"source": [
1414
"Class outline:\n",
1515
"\n",
16-
"* A quick installation check of [ipython](http://ipython.org/install.html) and [jupyter notebook]((http://jupyter.readthedocs.io/en/latest/install.html)\n",
16+
"* A quick installation check of [ipython](https://ipython.org/install.html) and [jupyter notebook](https://jupyter.readthedocs.io/en/latest/install.html)\n",
1717
"* An overview of the IPython project from [the official website](http://ipython.org), and [jupyter](https://jupyter.org)\n",
1818
"* Super basic intro to the notebook: typing code.\n",
19-
"* [Notebook Basics](examples/Notebook/Notebook Basics.ipynb)\n",
20-
"* [IPython - beyond plain python](examples/IPython Kernel/Beyond Plain Python.ipynb)\n",
21-
"* [Markdown Cells](examples/Notebook/Working With Markdown Cells.ipynb)\n",
22-
"* [Rich Display System](examples/IPython Kernel/Rich Output.ipynb)\n",
19+
"* [Notebook Basics](examples/Notebook/Notebook%20Basics.ipynb)\n",
20+
"* [IPython - beyond plain python](examples/IPython%20Kernel/Beyond%20Plain%20Python.ipynb)\n",
21+
"* [Markdown Cells](examples/Notebook/Working%20With%20Markdown%20Cells.ipynb)\n",
22+
"* [Rich Display System](examples/IPython%20Kernel/Rich%20Output.ipynb)\n",
2323
"* [Custom Display logic](examples/IPython%20Kernel/Custom%20Display%20Logic.ipynb)\n",
2424
"* [Customizing IPython - a condensed version](exercises/Customization/Condensed.ipynb)\n",
2525
"* [Running a Secure Public Notebook Server](examples/Notebook/Running%20the%20Notebook%20Server.ipynb#Securing-the-notebook-server)\n",
@@ -76,7 +76,7 @@
7676
"name": "python",
7777
"nbconvert_exporter": "python",
7878
"pygments_lexer": "ipython3",
79-
"version": "3.6.1"
79+
"version": "3.6.5"
8080
}
8181
},
8282
"nbformat": 4,

examples/Builtin Extensions/Index.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
"cell_type": "markdown",
4444
"metadata": {},
4545
"source": [
46-
"* [Cython Magics](Cython Magics.ipynb): magics for compiling and running Cython code in a cell\n",
47-
"* [Octave Magic](Octave Magic.ipynb): magics for running Octave code in a cell\n",
48-
"* [R Magics](R Magics.ipynb): magics for running R code in a cell"
46+
"* [Cython Magics](Cython%20Magics.ipynb): magics for compiling and running Cython code in a cell\n",
47+
"* [Octave Magic](Octave%20Magic.ipynb): magics for running Octave code in a cell\n",
48+
"* [R Magics](R%20Magics.ipynb): magics for running R code in a cell"
4949
]
5050
}
5151
],

examples/IPython Kernel/Capturing Output.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"IPython has a [cell magic](Cell Magics.ipynb), `%%capture`, which captures the stdout/stderr of a cell. With this magic you can discard these streams or store them in a variable."
14+
"IPython has a [cell magic](Cell%20Magics.ipynb), `%%capture`, which captures the stdout/stderr of a cell. With this magic you can discard these streams or store them in a variable."
1515
]
1616
},
1717
{

examples/IPython Kernel/Custom Display Logic.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"cell_type": "markdown",
1919
"metadata": {},
2020
"source": [
21-
"As described in the [Rich Output](Rich Output.ipynb) tutorial, the IPython display system can display rich representations of objects in the following formats:\n",
21+
"As described in the [Rich Output](Rich%20Output.ipynb) tutorial, the IPython display system can display rich representations of objects in the following formats:\n",
2222
"\n",
2323
"* JavaScript\n",
2424
"* HTML\n",

examples/IPython Kernel/Index.ipynb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
"cell_type": "markdown",
4040
"metadata": {},
4141
"source": [
42-
"* [Cell Magics](Cell Magics.ipynb)\n",
43-
"* [Script Magics](Script Magics.ipynb)\n",
44-
"* [Rich Output](Rich Output.ipynb)\n",
45-
"* [Custom Display Logic](Custom Display Logic.ipynb)\n",
46-
"* [Plotting in the Notebook](Plotting in the Notebook.ipynb)\n",
47-
"* [Capturing Output](Capturing Output.ipynb)"
42+
"* [Cell Magics](Cell%20Magics.ipynb)\n",
43+
"* [Script Magics](Script%20Magics.ipynb)\n",
44+
"* [Rich Output](Rich%20Output.ipynb)\n",
45+
"* [Custom Display Logic](Custom%20Display%20Logic.ipynb)\n",
46+
"* [Plotting in the Notebook](Plotting%20in%20the%20Notebook.ipynb)\n",
47+
"* [Capturing Output](Capturing%20Output.ipynb)"
4848
]
4949
},
5050
{
@@ -58,11 +58,11 @@
5858
"cell_type": "markdown",
5959
"metadata": {},
6060
"source": [
61-
"* [Background Jobs](Background Jobs.ipynb)\n",
62-
"* [Trapezoid Rule](Trapezoid Rule.ipynb)\n",
61+
"* [Background Jobs](Background%20Jobs.ipynb)\n",
62+
"* [Trapezoid Rule](Trapezoid%20Rule.ipynb)\n",
6363
"* [SymPy](SymPy.ipynb)\n",
64-
"* [Raw Input in the Notebook](Raw Input in the Notebook.ipynb)\n",
65-
"* [Importing Notebooks](Importing Notebooks.ipynb)"
64+
"* [Raw Input in the Notebook](Raw%20Input%20in%20the%20Notebook.ipynb)\n",
65+
"* [Importing Notebooks](Importing%20Notebooks.ipynb)"
6666
]
6767
},
6868
{

examples/Index.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"cell_type": "markdown",
3333
"metadata": {},
3434
"source": [
35-
"* [IPython Kernel](IPython Kernel/Index.ipynb): IPython's core syntax and command line features available in all frontends\n",
35+
"* [IPython Kernel](IPython%20Kernel/Index.ipynb): IPython's core syntax and command line features available in all frontends\n",
3636
"* [Embedding](Embedding/Index.ipynb): Embedding and reusing IPython's components into other applications\n"
3737
]
3838
}

examples/Interactive Widgets/Custom Widget - Hello World.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"[Index](Index.ipynb) - [Back](Widget Styling.ipynb)"
7+
"[Index](Index.ipynb) - [Back](Widget%20Styling.ipynb)"
88
]
99
},
1010
{
@@ -765,7 +765,7 @@
765765
"cell_type": "markdown",
766766
"metadata": {},
767767
"source": [
768-
"[Index](Index.ipynb) - [Back](Widget Styling.ipynb)"
768+
"[Index](Index.ipynb) - [Back](Widget%20Styling.ipynb)"
769769
]
770770
}
771771
],

examples/Interactive Widgets/Index.ipynb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
"cell_type": "markdown",
4040
"metadata": {},
4141
"source": [
42-
"- [Using Interact](Using Interact.ipynb)\n",
43-
"- [Widget Basics](Widget Basics.ipynb) \n",
44-
"- [Widget Events](Widget Events.ipynb) \n",
45-
"- [Widget Placement](Widget Placement.ipynb) \n",
46-
"- [Widget Styling](Widget Styling.ipynb) \n",
47-
"- [Custom Widget](Custom Widget - Hello World.ipynb)"
42+
"- [Using Interact](Using%20Interact.ipynb)\n",
43+
"- [Widget Basics](Widget%20Basics.ipynb) \n",
44+
"- [Widget Events](Widget%20Events.ipynb) \n",
45+
"- [Widget Placement](Widget%20Placement.ipynb) \n",
46+
"- [Widget Styling](Widget%20Styling.ipynb) \n",
47+
"- [Custom Widget](Custom%20Widget%20-%20Hello%20World.ipynb)"
4848
]
4949
},
5050
{
@@ -58,10 +58,10 @@
5858
"cell_type": "markdown",
5959
"metadata": {},
6060
"source": [
61-
"- [Variable Inspector](Variable Inspector.ipynb) \n",
62-
"- [Export As (nbconvert)](Export As (nbconvert%29.ipynb) \n",
63-
"- [Nonblocking Console](Nonblocking Console.ipynb) \n",
64-
"- [File Upload Widget](File Upload Widget.ipynb)"
61+
"- [Variable Inspector](Variable%20Inspector.ipynb) \n",
62+
"- [Export As (nbconvert)](Export%20As%20(nbconvert%29.ipynb) \n",
63+
"- [Nonblocking Console](Nonblocking%20Console.ipynb) \n",
64+
"- [File Upload Widget](File%20Upload%20Widget.ipynb)"
6565
]
6666
},
6767
{
@@ -75,12 +75,12 @@
7575
"cell_type": "markdown",
7676
"metadata": {},
7777
"source": [
78-
"* [Beat Frequencies](Beat Frequencies.ipynb)\n",
79-
"* [Exploring Graphs](Exploring Graphs.ipynb)\n",
78+
"* [Beat Frequencies](Beat%20Frequencies.ipynb)\n",
79+
"* [Exploring Graphs](Exploring%20Graphs.ipynb)\n",
8080
"* [Factoring](Factoring.ipynb)\n",
81-
"* [Image Browser](Image Browser.ipynb)\n",
82-
"* [Image Processing](Image Processing.ipynb)\n",
83-
"* [Lorenz Differential Equations](Lorenz Differential Equations.ipynb)"
81+
"* [Image Browser](Image%20Browser.ipynb)\n",
82+
"* [Image Processing](Image%20Processing.ipynb)\n",
83+
"* [Lorenz Differential Equations](Lorenz%20Differential%20Equations.ipynb)"
8484
]
8585
}
8686
],

examples/Interactive Widgets/Widget Basics.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"[Index](Index.ipynb) - [Next](Widget List.ipynb)"
7+
"[Index](Index.ipynb) - [Next](Widget%20List.ipynb)"
88
]
99
},
1010
{
@@ -417,7 +417,7 @@
417417
"cell_type": "markdown",
418418
"metadata": {},
419419
"source": [
420-
"[Index](Index.ipynb) - [Next](Widget List.ipynb)"
420+
"[Index](Index.ipynb) - [Next](Widget%20List.ipynb)"
421421
]
422422
}
423423
],

examples/Interactive Widgets/Widget Events.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"[Index](Index.ipynb) - [Back](Widget List.ipynb) - [Next](Widget Styling.ipynb)"
7+
"[Index](Index.ipynb) - [Back](Widget%20List.ipynb) - [Next](Widget Styling.ipynb)"
88
]
99
},
1010
{
@@ -349,7 +349,7 @@
349349
"cell_type": "markdown",
350350
"metadata": {},
351351
"source": [
352-
"[Index](Index.ipynb) - [Back](Widget List.ipynb) - [Next](Widget Styling.ipynb)"
352+
"[Index](Index.ipynb) - [Back](Widget%20List.ipynb) - [Next](Widget Styling.ipynb)"
353353
]
354354
}
355355
],

examples/Interactive Widgets/Widget List.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"[Index](Index.ipynb) - [Back](Widget Basics.ipynb) - [Next](Widget Events.ipynb)"
7+
"[Index](Index.ipynb) - [Back](Widget%20Basics.ipynb) - [Next](Widget Events.ipynb)"
88
]
99
},
1010
{
@@ -593,7 +593,7 @@
593593
"cell_type": "markdown",
594594
"metadata": {},
595595
"source": [
596-
"[Index](Index.ipynb) - [Back](Widget Basics.ipynb) - [Next](Widget Events.ipynb)"
596+
"[Index](Index.ipynb) - [Back](Widget%20Basics.ipynb) - [Next](Widget Events.ipynb)"
597597
]
598598
}
599599
],

examples/Interactive Widgets/Widget Styling.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"[Index](Index.ipynb) - [Back](Widget Events.ipynb) - [Next](Custom Widget - Hello World.ipynb)"
7+
"[Index](Index.ipynb) - [Back](Widget%20Events.ipynb) - [Next](Custom Widget - Hello World.ipynb)"
88
]
99
},
1010
{
@@ -551,7 +551,7 @@
551551
"cell_type": "markdown",
552552
"metadata": {},
553553
"source": [
554-
"[Index](Index.ipynb) - [Back](Widget Events.ipynb) - [Next](Custom Widget - Hello World.ipynb)"
554+
"[Index](Index.ipynb) - [Back](Widget%20Events.ipynb) - [Next](Custom Widget - Hello World.ipynb)"
555555
]
556556
}
557557
],

examples/Notebook/Index.ipynb

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@
3939
"cell_type": "markdown",
4040
"metadata": {},
4141
"source": [
42-
"* [What is the IPython Notebook?](What is the IPython Notebook%3F.ipynb)\n",
43-
"* [Running the Notebook Server](Running the Notebook Server.ipynb)\n",
44-
"* [Notebook Basics](Notebook Basics.ipynb)\n",
45-
"* [Running Code](Running Code.ipynb)\n",
46-
"* [Working With Markdown Cells](Working With Markdown Cells.ipynb)\n",
47-
"* [Custom Keyboard Shortcuts](Custom Keyboard Shortcuts.ipynb)\n",
48-
"* [JavaScript Notebook Extensions](JavaScript Notebook Extensions.ipynb)\n",
49-
"* [Notebook Security](Notebook Security.ipynb)\n",
50-
"* [Converting Notebooks With nbconvert](Converting Notebooks With nbconvert.ipynb)\n",
51-
"* [Using nbconvert as a Library](Using nbconvert as a Library.ipynb)"
42+
"* [What is the IPython Notebook?](What%20is%20the%20IPython%20Notebook%3F.ipynb)\n",
43+
"* [Running the Notebook Server](Running%20the%20Notebook%20Server.ipynb)\n",
44+
"* [Notebook Basics](Notebook%20Basics.ipynb)\n",
45+
"* [Running Code](Running%20Code.ipynb)\n",
46+
"* [Working With Markdown Cells](Working%20With%20Markdown%20Cells.ipynb)\n",
47+
"* [Custom Keyboard Shortcuts](Custom%20Keyboard%20Shortcuts.ipynb)\n",
48+
"* [JavaScript Notebook Extensions](JavaScript%20Notebook%20Extensions.ipynb)\n",
49+
"* [Notebook Security](Notebook%20Security.ipynb)\n",
50+
"* [Converting Notebooks With nbconvert](Converting%20Notebooks%20With%20nbconvert.ipynb)\n",
51+
"* [Using nbconvert as a Library](Using%20nbconvert%20as%20a%20Library.ipynb)"
5252
]
5353
},
5454
{
@@ -62,9 +62,9 @@
6262
"cell_type": "markdown",
6363
"metadata": {},
6464
"source": [
65-
"* [Importing Notebooks](Importing Notebooks.ipynb)\n",
66-
"* [Connecting with the Qt Console](Connecting with the Qt Console.ipynb)\n",
67-
"* [Typesetting Equations](Typesetting Equations.ipynb)"
65+
"* [Importing Notebooks](Importing%20Notebooks.ipynb)\n",
66+
"* [Connecting with the Qt Console](Connecting%20with%20the%20Qt%20Console.ipynb)\n",
67+
"* [Typesetting Equations](Typesetting%20Equations.ipynb)"
6868
]
6969
}
7070
],

examples/Notebook/Notebook Basics.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"\n",
1717
" jupyter notebook\n",
1818
"\n",
19-
"For more details on how to run the notebook server, see [Running the Notebook Server](Running the Notebook Server.ipynb)."
19+
"For more details on how to run the notebook server, see [Running the Notebook Server](Running%20the%20Notebook%20Server.ipynb)."
2020
]
2121
},
2222
{

examples/Parallel Computing/Index.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"cell_type": "markdown",
4040
"metadata": {},
4141
"source": [
42-
"* [Data Publication API](Data Publication API.ipynb) "
42+
"* [Data Publication API](Data%20Publication%20API.ipynb) "
4343
]
4444
},
4545
{
@@ -53,13 +53,13 @@
5353
"cell_type": "markdown",
5454
"metadata": {},
5555
"source": [
56-
"* [Monitoring an MPI Simulation - 1](Monitoring an MPI Simulation - 1.ipynb)\n",
57-
"* [Monitoring an MPI Simulation - 2](Monitoring an MPI Simulation - 2.ipynb)\n",
58-
"* [Parallel Decorator and map](Parallel Decorator and map.ipynb)\n",
59-
"* [Parallel Magics](Parallel Magics.ipynb)\n",
60-
"* [Using Dill](Using Dill.ipynb)\n",
61-
"* [Using MPI with IPython Parallel](Using MPI with IPython Parallel.ipynb)\n",
62-
"* [Monte Carlo Options](Monte Carlo Options.ipynb)"
56+
"* [Monitoring an MPI Simulation - 1](Monitoring%20an%20MPI%20Simulation%20-%201.ipynb)\n",
57+
"* [Monitoring an MPI Simulation - 2](Monitoring%20an%20MPI%20Simulation%20-%202.ipynb)\n",
58+
"* [Parallel Decorator and map](Parallel%20Decorator%20and%20map.ipynb)\n",
59+
"* [Parallel Magics](Parallel%20Magics.ipynb)\n",
60+
"* [Using Dill](Using%20Dill.ipynb)\n",
61+
"* [Using MPI with IPython Parallel](Using%20MPI%20with%20IPython%20Parallel.ipynb)\n",
62+
"* [Monte Carlo Options](Monte%20Carlo%20Options.ipynb)"
6363
]
6464
},
6565
{

0 commit comments

Comments
 (0)