-
Hi I noticed all of the website tool options when you create a website through Quarto. But why does favicon option or social metadata not work for an HTML that is stand alone? Or is this possible? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
It's possible, you can also add this yourself but indeed it could probably be a nice thing to have for For example, to add a favicon to your document it is as simple as adding the following to your yaml header: include-in-header:
- text: |
<link rel = "shortcut icon" href = "my-favicon.svg" /> |
Beta Was this translation helpful? Give feedback.
-
Oh I didn't see the include-in-header option. This solves my problem thanks! |
Beta Was this translation helpful? Give feedback.
It's possible, you can also add this yourself but indeed it could probably be a nice thing to have for
html
andrevealjs
formats.For example, to add a favicon to your document it is as simple as adding the following to your yaml header: