summaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorthmsdt <thomas.kulik@telekom.de>2023-04-03 13:33:06 +0200
committerthmsdt <thomas.kulik@telekom.de>2023-04-17 12:40:50 +0200
commit2f07ec8a22ccce11ebe01f7d9ed9f947631d97ff (patch)
tree7c0183193fd2cfe4a34f08f1c6c115427f2279b0 /docs/conf.py
parentb0c6c0b98a4fefcd0b2c88102a06a61c5d624cd0 (diff)
move requirements file and correct path in tox.ini
Issue-ID: DOC-811 Signed-off-by: thmsdt <thomas.kulik@telekom.de> Change-Id: I7c1b2bb3bd2357d2de5458d4791d8ee20affc682
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 88e12576d..e7af3f626 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -6,11 +6,15 @@ author = "Open Network Automation Platform"
# yamllint disable-line rule:line-length
copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
+exclude_patterns = [
+ '.tox'
+]
+
pygments_style = "sphinx"
html_theme = "sphinx_rtd_theme"
html_theme_options = {
- "style_nav_header_background": "white",
- "sticky_navigation": "False" }
+ "style_nav_header_background": "white",
+ "sticky_navigation": "False" }
html_logo = "_static/logo_onap_2017.png"
html_favicon = "_static/favicon.ico"
html_static_path = ["_static"]
@@ -20,9 +24,10 @@ extensions = [
'sphinx.ext.intersphinx',
'sphinx.ext.graphviz',
'sphinxcontrib.blockdiag',
+ 'sphinxcontrib.plantuml',
'sphinxcontrib.seqdiag',
+ 'sphinxcontrib.spelling' ,
'sphinxcontrib.swaggerdoc',
- 'sphinxcontrib.plantuml',
'sphinx_toolbox.collapse'
]
@@ -82,5 +87,5 @@ def setup(app):
app.add_css_file("css/ribbon.css")
linkcheck_ignore = [
- r'http://localhost:\d+/'
+ r'http://localhost:\d+/'
]