Sphinx usage notebook

Practical sphinx

Jupyter/notebook

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.doctest',
    'sphinx.ext.intersphinx',
    'sphinx.ext.autosummary',
    'sphinx.ext.mathjax',
    'nbsphinx',
]

# Add type of source files
source_suffix = ['.rst', '.md', '.ipynb']