8000 Implement hoverxref for floating tooltips by RDaxini · Pull Request #2290 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Implement hoverxref for floating tooltips #2290

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

Merged
merged 26 commits into from
Nov 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CF73
Prev Previous commit
Next Next commit
enable tooltip for multiple roles
  • Loading branch information
RDaxini committed Nov 9, 2024
commit f4275b81c78dace07264493d2f95e44e6e19f3e6
13 changes: 8 additions & 5 deletions docs/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,14 @@
mathjax3_config = {'chtml': {'displayAlign': 'left',
'displayIndent': '2em'}}

# # Enable hover tooltips for glossary terms
# hoverxref_roles = [
# 'term',
# ]
hoverxref_auto_ref = True # enable hoverxref for all roles
# Enable hover tooltips
hoverxref_roles = [
'term',
'ref',
'func',
'class',
'meth',
]

napoleon_use_rtype = False # group rtype on same line together with return

Expand Down
Loading
0