Commit 50d1eb9e authored by Peter Parente's avatar Peter Parente Committed by GitHub

Merge pull request #755 from jussmi/feature-675

Adding recipe for nbextension spellchecker for issue 675
parents a6fc0cfb 80fa2f4d
......@@ -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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment