We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980528e commit babe008Copy full SHA for babe008
docs/source/conf.py
@@ -9,11 +9,18 @@
9
if on_rtd:
10
subprocess.call('cd ..; doxygen', shell=True)
11
12
-import sphinx_rtd_theme
13
-
14
-html_theme = "sphinx_rtd_theme"
15
16
-html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
+ html_context = {
+ "css_files": [
+ "//media.readthedocs.org/css/sphinx_rtd_theme.css",
+ "//media.readthedocs.org/css/readthedocs-doc-embed.css",
+ ]
17
+ }
18
+else:
19
+
20
+ import sphinx_rtd_theme
21
22
+ html_theme = "sphinx_rtd_theme"
23
+ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
24
25
extensions = ['breathe']
26
breathe_projects = { 'xsimd': '../xml' }
0 commit comments