1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Subject: Sphinx: Use rtd_theme
Author: Alexander Sulfrian <alexander@sulfrian.net>
Forwarded: not-needed
The 'insipid' sphinx theme is not packaged, but it is certently not required
for the documentation. Only the "How To Navigate This Site" should be removed,
because it is specifict for the 'insipid' theme.
See also: https://github.com/SoundScapeRenderer/ssr/pull/331#issuecomment-1416251418
Index: python-sounddevice/doc/conf.py
===================================================================
--- python-sounddevice.orig/doc/conf.py
+++ python-sounddevice/doc/conf.py
@@ -49,7 +49,7 @@ default_role = 'py:obj'
nitpicky = True
-html_theme = 'insipid'
+html_theme = 'sphinx_rtd_theme'
html_theme_options = {
}
html_title = project + ', version ' + release
Index: python-sounddevice/doc/index.rst
===================================================================
--- python-sounddevice.orig/doc/index.rst
+++ python-sounddevice/doc/index.rst
@@ -24,7 +24,7 @@
</details>
-.. only:: html
+.. only:: never
.. admonition:: How To Navigate This Site
|