aboutsummaryrefslogtreecommitdiff
path: root/Docs/source/conf.py
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2020-01-08 09:08:21 -0800
committerGravatar Axel Huebl <axel.huebl@plasma.ninja> 2020-01-08 09:13:43 -0800
commit82526e1570c3f0e65da21f9407112db9868609bc (patch)
tree52479b1ffb85388d5d86763f9257f23c82602107 /Docs/source/conf.py
parentbed6fa6939db176d4f5987db8792e793951932e5 (diff)
downloadWarpX-82526e1570c3f0e65da21f9407112db9868609bc.tar.gz
WarpX-82526e1570c3f0e65da21f9407112db9868609bc.tar.zst
WarpX-82526e1570c3f0e65da21f9407112db9868609bc.zip
Doxygen: Add HTML to _static Sphinx Dir
Provide the "classic" HTML rendered pages of Doxygen.
Diffstat (limited to 'Docs/source/conf.py')
-rw-r--r--Docs/source/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/source/conf.py b/Docs/source/conf.py
index 4a4716b66..f4d487aab 100644
--- a/Docs/source/conf.py
+++ b/Docs/source/conf.py
@@ -100,7 +100,7 @@ numfig = True
# 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 ------------------------------------------
@@ -194,4 +194,4 @@ highlight_language = 'cpp'
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
if read_the_docs_build:
- subprocess.call('cd ../; doxygen', shell=True)
+ subprocess.call('cd ../; doxygen; mkdir -p source/_static; cp -r doxyhtml source/_static/', shell=True)