Options
Enable sphinx to generate HTML versions of notebooks
Values |
---|
False (default) |
True |
conf.py
usage:
jupyter_generate_html = True
Specify path to nbconvert html template file
Note
Documentation on nbconvert templates can be found here
conf.py
usage:
jupyter_html_template = "theme/template/<file>.tpl"
Enable sphinx to construct a complete website
.. todo:: Document all the extra elements this option does over jupyter_generate_html
This option:
- fetches coverage statistics if coverage is enabled.
conf.py
usage:
jupyter_make_site = True
Request Sphinx to generate a collection of download notebooks to support a website
conf.py
usage:
jupyter_download_nb = True
Apply a url prefix when writing images in Jupyter notebooks for download notebook set.
conf.py
usage:
jupyter_images_urlpath = "s3://<path>/_static/img/"
Specify theme name
conf.py
usage:
jupyter_theme = <theme-name>
The theme should be located in the path of jupyter_theme_path. The default
path would be: theme/<theme-name>/
Specify location for theme files
Value |
---|
"theme" (default) |
conf.py
usage:
jupyter_theme_path = "theme"
Specify path for templates
Value |
---|
"templates" (default) |
conf.py
usage:
jupyter_template_path = "templates"
Specify html
template to be used by nbconvert
conf.py
usage:
jupyter_template_html = <path to tpl file>
The template file should be located in the path of jupyter_template_path
.
The default path would be: templates/<tpl file>