Merge pull request #755 from jussmi/feature-675

Adding recipe for nbextension spellchecker for issue 675
This commit is contained in:
Peter Parente
2018-11-08 12:32:06 -05:00
committed by GitHub

View File

@@ -288,3 +288,20 @@ For jupyter classic:
```
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)