diff options
Diffstat (limited to 'Docs/source/conf.py')
-rw-r--r-- | Docs/source/conf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Docs/source/conf.py b/Docs/source/conf.py index 51f80ae16..a7258319f 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -32,7 +32,6 @@ sys.path.insert(0, os.path.join( os.path.abspath(__file__), '../Python') ) # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = ['sphinx.ext.autodoc', - 'sphinx.ext.intersphinx', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinx.ext.githubpages', @@ -103,7 +102,7 @@ html_theme = 'sphinx_rtd_theme' # 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'] # -- Options for HTMLHelp output ------------------------------------------ |