From 579c15acc1ec4707a38093c3f44a78a7dde56f0f Mon Sep 17 00:00:00 2001 From: franciscovillaescusa Date: Tue, 27 Jun 2023 20:28:26 -0400 Subject: [PATCH] update --- docs/source/conf.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 1d897b0..522f754 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -13,7 +13,7 @@ # import os # import sys # sys.path.insert(0, os.path.abspath('.')) -import sphinx_rtd_theme +#import sphinx_rtd_theme # -- Project information ----------------------------------------------------- @@ -32,17 +32,21 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "sphinx_tabs.tabs", + "nbsphinx", + "sphinx_gallery.load_style", "sphinx_rtd_theme", ] # 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 = [] +exclude_patterns = [] +pygments_style = 'sphinx' # -- Options for HTML output ------------------------------------------------- @@ -55,7 +59,7 @@ # 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'] +html_static_path = ['_static'] html_logo = 'logo.png'