Adding recipe for nbextension spellchecker for issue 675

This commit is contained in:
Justin Smith
2018-11-08 10:41:14 -05:00
parent a6fc0cfbd0
commit 80fa2f4d5c

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)