Sphinx usage notebook

Practical sphinx

Jupyter/notebook

 1extensions = [
 2    'sphinx.ext.autodoc',
 3    'sphinx.ext.doctest',
 4    'sphinx.ext.intersphinx',
 5    'sphinx.ext.autosummary',
 6    'sphinx.ext.mathjax',
 7    'nbsphinx',
 8]
 9
10# Add type of source files
11source_suffix = ['.rst', '.md', '.ipynb']