I experiment with Quarto html and I would like to show some tips when hovering on some words on the page. However, I have many of such tips and I don’t want them to be displayed in page footer, only when hovering the terms in the body of the document.
I did not find how to hide the footnotes from page footer. If necessary, I may hide the entire page footer if necessary. Since I have many termis with such tips, a solution relying on css and YAML options is preferred to a solution where hard-coded html is required for each tip.
Example .qmd
:
---
format:
html:
footnotes-hover: true
---
The following footnote is available on hovering^[This footnote should only be displayed when hovering the text, not in page footer.]
Thank you !