Skip to content
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
2 changes: 1 addition & 1 deletion docs/00-xyz-sample-notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"from IPython.core.display import display, HTML\n",
"from IPython.display import display, HTML\n",
"display(HTML(\"<style>.container { width:100% !important; }</style>\"))"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ First up, if you're in a notebook, keyboard shortcuts can be found using the `Es
#### Better display
This cell makes your jupyter notebook use the full screen width. Put this as your first executable cell. You'll thank us.
```python
from IPython.core.display import display, HTML
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
```
#### Autoreloading
Expand Down