diff options
Diffstat (limited to 'docs/source/conf.py')
-rw-r--r-- | docs/source/conf.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index bb6715564..d00e821ab 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -19,13 +19,13 @@ # -- Project information ----------------------------------------------------- project = u'Hybrid ICN' -copyright = u'(c) 2017-2020 Cisco and/or its affiliates.' -author = u'Luca Muscariello' +copyright = u'(c) 2018-2022 Cisco and/or its affiliates.' +author = u'HICN Team Members' # The short X.Y version version = u'' # The full version, including alpha/beta/rc tags -release = u'20.01' +release = u'22.02' # -- General configuration --------------------------------------------------- @@ -37,7 +37,7 @@ release = u'20.01' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['recommonmark'] +extensions = ['recommonmark', 'sphinx_markdown_tables'] # Prefix document path to section labels, otherwise autogenerated labels would look like 'heading' # rather than 'path/to/file:heading' @@ -88,7 +88,7 @@ html_theme = "sphinx_rtd_theme" html_static_path = ['_static'] def setup(app): - app.add_stylesheet('css/rules.css') + app.add_css_file('css/rules.css') # Custom sidebar templates, must be a dictionary that maps document names # to template names. |