Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

examples: fix whitespaces in Markdown links #3716

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/examples/Widget Basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tags": ["remove-cell"]
},
"source": [
"[Index](Index.ipynb) - [Next](Widget List.ipynb)"
"[Index](Index.ipynb) - [Next](Widget%20List.ipynb)"
]
},
{
Expand Down Expand Up @@ -353,7 +353,7 @@
}
},
"source": [
"If you need to display the same value two different ways, you'll have to use two different widgets. Instead of attempting to manually synchronize the values of the two widgets, you can use the `link` or `jslink` function to link two properties together (the difference between these is discussed in [Widget Events](Widget Events.ipynb)). Below, the values of two widgets are linked together."
"If you need to display the same value two different ways, you'll have to use two different widgets. Instead of attempting to manually synchronize the values of the two widgets, you can use the `link` or `jslink` function to link two properties together (the difference between these is discussed in [Widget Events](Widget%20Events.ipynb)). Below, the values of two widgets are linked together."
]
},
{
Expand Down Expand Up @@ -402,7 +402,7 @@
"tags": ["remove-cell"]
},
"source": [
"[Index](Index.ipynb) - [Next](Widget List.ipynb)"
"[Index](Index.ipynb) - [Next](Widget%20List.ipynb)"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/Widget List.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@
"source": [
"## Output\n",
"\n",
"The `Output` widget can capture and display stdout, stderr and [rich output generated by IPython](http://ipython.readthedocs.io/en/stable/api/generated/IPython.display.html#module-IPython.display). For detailed documentation, see the [output widget examples](https://ipywidgets.readthedocs.io/en/latest/examples/Output Widget.html)."
"The `Output` widget can capture and display stdout, stderr and [rich output generated by IPython](http://ipython.readthedocs.io/en/stable/api/generated/IPython.display.html#module-IPython.display). For detailed documentation, see the [output widget examples](Output%20Widget.ipynb)."
]
},
{
Expand Down