-
-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOCS: variable names are merged with description #962
Comments
Damn. Yes, there used to be a colon there. Any hope some could follow what's outlined in that numpydoc issue and make a PR on our theme CSS (https://github.com/pyviz-dev/sphinx_holoviz_theme)? |
Here is my understanding of this issue. When Sphinx moved from 1.x to 2.0, they added a new entry to the core style sheet .classifier:before {
font-style: normal;
margin: 0.5em;
content: ":";
} That means that in Sphinx 2 and above, the Consequently, newer versions of numpydoc don't add The simplest way to resolve the issue to build your documentation on I have seen this issue tends to arise when documentation is built on readthedocs. As part of its default build process, readthedocs first installs I'm not going to make a PR to fix this because I can't see where datashader specifies its documentation requirements, and I don't understand how your conda.recipe works. |
Thanks! I imagine we'll have other issues when we upgrade sphinx, but that definitely helps us get started! |
In the API docs, the variable names and their descriptions are not separated by a space or colon:
Screenshots or screencasts of the bug in action
e.g. the docs for
datashader.transfer_functions.shade
:Other info
This makes the docs hard to read and is a bit confusing (e.g. I stumbled on this after looking for
aggDataArray
for a while).I believe this issue is similar or related to a numpydoc issue related to upgrading sphinx: numpy/numpydoc#215
The text was updated successfully, but these errors were encountered: