Content not loading #224
Description
Hi all,
I am trying to get hoverxref to work for the last number of days and to no avail. I am working on some documentation, which is being built and hosted on readthedocs.com.
My issue is that the content is not loading, the window appears and the reference to each section works, but no content gets displayed.
I am using the following command in .rst:
This is implemented in the :hoverxref:`class_of_interest<hoverxref:class_of_interest>` class.
I am using another library, Breathe, to link Doxygen for a C++ based applicaton to RTD. The section of documentation outlining this class is referenced as follows:
.. _hoverxref:class_of_interest:
In my config file I have the following set-up for hoverxref:
extensions = ['sphinxcontrib.seqdiag','sphinxcontrib.blockdiag', 'sphinx_copybutton', 'hoverxref.extension', 'breathe',]
...
hoverxref_auto_ref = True
hoverxref_role_types = {
'hoverxref' : 'tooltip',
'ref' : 'tooltip',
}
You will see that I am setting the :ref: command to use hoverxref.
Finally, in my requirements I have the following:
sphinx==4.0.2
sphinx-rtd-theme==1.0.0
sphinxcontrib-seqdiag==2.0.0
sphinxcontrib-blockdiag==2.0.0
sphinx-autobuild==2021.3.14
docutils==0.17.1
funcparserlib==1.0.0a0
sphinx-toolbox
sphinx-copybutton
sphinx-hoverxref
breathe
Any guidance would be greatly appreciated, this issue is leading to a roadblock in the progression of the document I am writing.
To clarify, I am seeing this issue both when I build and test locally, and when I build and test on the RTD hosted build.