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 7032dcb commit cb45ad0Copy full SHA for cb45ad0
doc/conf.py
@@ -313,8 +313,15 @@
313
issues_user_uri = 'https://github.com/{user}'
314
315
316
+# Temporary work-around for spacing problem between parameter and parameter
317
+# type in the doc, see https://github.com/numpy/numpydoc/issues/215. The bug
318
+# has been fixed in sphinx (https://github.com/sphinx-doc/sphinx/pull/5976) but
319
+# through a change in sphinx basic.css except rtd_theme does not use basic.css.
320
+# In an ideal world, this would get fixed in this PR:
321
+# https://github.com/readthedocs/sphinx_rtd_theme/pull/747/files
322
def setup(app):
323
app.add_javascript('js/copybutton.js')
324
+ app.add_stylesheet("basic.css")
325
# app.connect('autodoc-process-docstring', generate_example_rst)
326
327
0 commit comments