-
DescriptionI'm deploying my quarto-built site using github pages. I would like to add something to the page headers. Currently I am rendering the website locally using
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Use
That's not up to Quarto. edit: adding my reply with code/screenshot The following should work and can be combined with profiles, etc. format:
html:
include-in-header:
- text: |
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett"/> ![]() |
Beta Was this translation helpful? Give feedback.
-
I would use post-render project scripts that edit the file programmatically: https://quarto.org/docs/projects/scripts.html#pre-and-post-render |
Beta Was this translation helpful? Give feedback.
The following should work and can be combined with profiles, etc.
(the meta is at the bottom but still in the header)