Skip to content

Commit

Permalink
extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderBand committed Jan 9, 2022
1 parent d6ebded commit c6f3766
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import datetime
import sphinx_rtd_theme

# -- Project information -----------------------------------------------------

project = 'Unbound'
copyright = '2007-2022, NLnet Labs'
author = 'NLnet Labs (CC-BY 3.0)'
year = datetime.datetime.now().year
copyright = f'2018–{year}, NLnet Labs'
author = 'NLnet Labs'

# The short X.Y version
version = '1.14.0'
Expand All @@ -41,11 +43,22 @@
extensions = [
'sphinx.ext.todo',
'sphinx.ext.ifconfig',
'sphinx.ext.autosectionlabel',
'sphinx_tabs.tabs',
'sphinx_copybutton',
'sphinx.ext.intersphinx',
'sphinx.ext.autosectionlabel'
]

intersphinx_mapping = {
'nsd': ('https://nsd.docs.nlnetlabs.nl/en/latest/', None)
}

autosectionlabel_prefix_document = True

# -- Sphinx Tabs configuration -----------------------------------------------

sphinx_tabs_disable_tab_closing = True

# Add any paths that contain templates here, relative to this directory.
templates_path = ['../templates']

Expand Down

0 comments on commit c6f3766

Please sign in to comment.