summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authortmartins <thigm85@gmail.com>2020-08-27 13:46:40 +0200
committertmartins <thigm85@gmail.com>2020-08-27 13:46:40 +0200
commitb0894ff53d0493931c657cb64a587c53e8269f09 (patch)
tree82297651afd0437003ea906c8b4573c8ea5a8f50 /python
parent01fb4afca584bbcfc9c1024f7035a436e130f53c (diff)
include nbsphinx
Diffstat (limited to 'python')
-rw-r--r--python/vespa/docs/sphinx/source/conf.py18
1 files changed, 8 insertions, 10 deletions
diff --git a/python/vespa/docs/sphinx/source/conf.py b/python/vespa/docs/sphinx/source/conf.py
index 06d15e754c7..256109b3c67 100644
--- a/python/vespa/docs/sphinx/source/conf.py
+++ b/python/vespa/docs/sphinx/source/conf.py
@@ -18,9 +18,9 @@ sys.path.insert(0, os.path.abspath("../../.."))
# -- Project information -----------------------------------------------------
-project = 'pyvespa'
-copyright = '2020, Thiago G. Martins'
-author = 'Thiago G. Martins'
+project = "pyvespa"
+copyright = "2020, Thiago G. Martins"
+author = "Thiago G. Martins"
# -- General configuration ---------------------------------------------------
@@ -28,28 +28,26 @@ author = 'Thiago G. Martins'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
-extensions = [
-'sphinx.ext.autodoc'
-]
+extensions = ["sphinx.ext.autodoc", "nbsphinx"]
# Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
+templates_path = ["_templates"]
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = []
-master_doc = 'index'
+master_doc = "index"
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-html_theme = 'alabaster'
+html_theme = "alabaster"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ['_static'] \ No newline at end of file
+html_static_path = ["_static"]