mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-18 07:22:57 +00:00
Merge pull request #755 from jussmi/feature-675
Adding recipe for nbextension spellchecker for issue 675
This commit is contained in:
@@ -288,3 +288,20 @@ For jupyter classic:
|
|||||||
```
|
```
|
||||||
docker run jupyter/base-notebook:6d2a05346196 start.sh jupyter notebook --NotebookApp.token=''
|
docker run jupyter/base-notebook:6d2a05346196 start.sh jupyter notebook --NotebookApp.token=''
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Enable nbextension spellchecker for markdown (or any other nbextension)
|
||||||
|
|
||||||
|
NB: this works for classic notebooks only
|
||||||
|
```
|
||||||
|
# Update with your base image of choice
|
||||||
|
FROM jupyter/minimal-notebook:latest
|
||||||
|
|
||||||
|
USER $NB_USER
|
||||||
|
|
||||||
|
RUN pip install jupyter_contrib_nbextensions && \
|
||||||
|
jupyter contrib nbextension install --user && \
|
||||||
|
# can modify or enable additional extensions here
|
||||||
|
jupyter nbextension enable spellchecker/main --user
|
||||||
|
```
|
||||||
|
|
||||||
|
Ref: [https://github.com/jupyter/docker-stacks/issues/675](https://github.com/jupyter/docker-stacks/issues/675)
|
||||||
|
Reference in New Issue
Block a user