Skip to content

Managing Notebook Extensions

Tony Hirst edited this page Sep 17, 2020 · 1 revision

$HOME/.jupyter/nbconfig/notebook.json is the settings file for parameters set using the nbextensions configurator.

Enabled extensions are listed in /srv/conda/envs/notebook/etc/jupyter/nbconfig/notebook.json

{
  "load_extensions": {
    "nbextensions_configurator/config_menu/main": true,
    "contrib_nbextensions_help_item/main": true,
    "spellchecker/main": true,
    "collapsible_headings/main": true,
    "codefolding/main": true,
    "python-markdown/main": true,
    "export_embedded/main": true,
    "skip-traceback/main": true,
    "hide_input/main": true,
    "init_cell/main": true
  },
  "bundlerextensions": {
    "docx_bundler": {
      "label": "Office Open XML (.docx)",
      "module_name": "jupyter_docx_bundler",
      "group": "download"
    },
    "odszip_download": {
      "label": "ODSzip (.nbk)",
      "module_name": "odszip.download",
      "group": "download"
    }
  }
}