-
DescriptionI looked around and didn't see anything similar, but possibly I missed things. (I think #957 might be related, in that citations and presumably footnotes should work for Markdown tables, but not HTML tables?) If I'm using HTML tables, is it possible to insert a footnote from within the table still? Obviously, markdown syntax won't work, and there isn't a semantic HTML element for Quarto to parse either. I could hack it by writing/styling a link myself and manually curating the list of notes at the end of the document, but of course that's not as nice as having actual footnote support (and would be janky depending on the backend). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
I believe you need to use the tricks to pass Markdown in HTML table for Quarto to render. This is mentioned in https://quarto.org/docs/authoring/tables.html#html-tables Using This is how to use citation or footnote syntax within an HTML table that Quarto will parse as raw HTML. Though I should verify if the footnotes get numbered correctly among others in the page 🤔 I'll try it The other way is to use tool lik gt for R or great_tables for Python to add footnotes directly to the table. The tool will be in charge of writing the correct HTML for you |
Beta Was this translation helpful? Give feedback.
It works. Here is an example