aboutsummaryrefslogtreecommitdiff
path: root/Docs/source/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'Docs/source/conf.py')
-rw-r--r--Docs/source/conf.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Docs/source/conf.py b/Docs/source/conf.py
index 1eaa61fe4..c61b2c476 100644
--- a/Docs/source/conf.py
+++ b/Docs/source/conf.py
@@ -188,10 +188,12 @@ primary_domain = 'cpp'
# Tell sphinx what the pygments highlight language should be.
highlight_language = 'cpp'
-# Download AMReX Doxygen Tagfile to interlink Doxygen docs
+# Download AMReX & openPMD-api Doxygen Tagfile to interlink Doxygen docs
url = 'https://amrex-codes.github.io/amrex/docs_xml/doxygen/amrex-doxygen-web.tag.xml'
urllib.request.urlretrieve(url, '../amrex-doxygen-web.tag.xml')
+url = 'https://openpmd-api.readthedocs.io/en/latest/_static/doxyhtml/openpmd-api-doxygen-web.tag.xml'
+urllib.request.urlretrieve(url, '../openpmd-api-doxygen-web.tag.xml')
# Build Doxygen
subprocess.call('cd ../; doxygen;'