Notebook-extensions
This repository contains several Javascript extensions for Jupyter:
- Cell tools: Two column and tabbed modes for input/output of notebook cells
- Document tools:
- Sections: Move whole sections up and down, number sections.
- Create table of contents (TOC) and create references/citations
- Spell check: spell check for markdown cells
Student interaction:
- Publish: your notebook, by copying it to a certain directory
- Submit: copies notebook to instructor
These extensions where once part of the Calico project.
Install
First download this collection and cd into the folder (here, dollar-sign represents the shell prompt):
$ wget https://github.com/Calysto/notebook-extensions/archive/master.zip
$ unzip master.zip
$ cd notebook-extensions-master
OR:
$ git clone https://github.com/Calysto/notebook-extensions.git
$ cd notebook-extensions
Next, install them into --system, --sys-prefix, or --user:
$ jupyter nbextension install calysto --user
And finally, enable the extensions you want:
$ jupyter nbextension enable calysto/document-tools/main
$ jupyter nbextension enable calysto/cell-tools/main
$ jupyter nbextension enable calysto/spell-check/main
$ jupyter nbextension enable calysto/publish/main
$ jupyter nbextension enable calysto/submit/main
To check their status:
$ jupyter nbextension list
When you now open or reload a notebook, it should load the extensions.