Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Latest commit

 

History

History
81 lines (50 loc) · 2.62 KB

development.rst

File metadata and controls

81 lines (50 loc) · 2.62 KB

Development

This is a very small guide to help with the development of this extension. Since it needs a backend and the event is only triggered only on mouse hover, it could be tedious if you don't know these tips & tricks.

Backend

This extension needs a Read the Docs backend to retrieve the content that will be inserted in the tooltip. You can use the API from https://readthedocs.org directly or a local instance of Read the Docs as backend.

Using readthedocs.org as backend

This is the easiest way to have the backend working, since you do not need to do anything. Although, you need to use an already existent project in Read the Docs.

To setup this approach, you need to put these settings in the conf.py of your docs:

hoverxref_project = 'sphinx-hoverxref'
hoverxref_version = 'latest'
hoverxref_api_host = 'https://readthedocs.org'

After building the documentation all the requests will be done to URLs like:

https://readthedocs.org/api/v2/embed/?project=sphinx-hoverxref&version=latest&doc=...&section=...

Note

The project and version has to be successfully built on Read the Docs to return the content requested.

Building and serving docs locally

With your documentation's project configured with the previous settings, you are ready to build and serve the docs from your computer.

Build the documentation with these commands:

.. prompt:: bash

   cd docs/
   make clean
   make html

Serve the documentation locally with this command:

.. prompt:: bash

   python -m http.server --directory _build/html 9000

Now, you can hit http://localhost:9000/ and you should see your documentation here.

Using a local Read the Docs instance

You can install Read the Docs locally following these instructions. You don't need to change anything to be able to use your local instance, the default :confval:`hoverxref_api_host` value should work.

Permanent tooltip to work with CSS

You need to find the selector of the a element that you want to emulate the mouse hover event first, then from the Javascript console, you can force the browser to trigger this event for us. This way, the element is inserted in the DOM and will persist there. Now, you can find the div for the tooltipster and edit the CSS used to render it.

$('#section > p > a').trigger('mouseenter')

Happy hacking!