X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=docs%2Fconf.py;h=a95ec040a276c8187c1020690b2f02c06dedb495;hb=13d73a3515008c5797f83bcaef0adfb6627395d3;hp=973ef9a1b42ac2b177b41897164a1d894d2f0b25;hpb=3ee4eb7dcbee8c08a020909c741f055a5c728ac6;p=osm%2FN2VC.git diff --git a/docs/conf.py b/docs/conf.py index 973ef9a..a95ec04 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,11 +33,15 @@ sys.path.insert(0, os.path.abspath('..')) # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. +sys.path.append(os.path.abspath('_extensions/')) extensions = [ 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.viewcode', 'sphinxcontrib.asyncio', + 'automembersummary', ] # Add any paths that contain templates here, relative to this directory. @@ -118,7 +122,7 @@ todo_include_todos = True # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'alabaster' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -294,3 +298,6 @@ texinfo_documents = [ # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False + +def setup(app): + app.add_stylesheet('custom.css')