-
Where do I store custom (reveal) designs? It's not clear to me, in which folder they should be stored or how to configure a path for Quarto where to find custom designs. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
What do you mean by "custom design"? For short, the "where" does not matter as long as you tell the "where" to Quarto. Are you talking about template? You can find more examples on the Awesome Quarto GitHub list: https://github.com/mcanouil/awesome-quarto#presentations. Or if you don't want to take that road, you can do all the same locally using every YAML option at your disposal, see https://quarto.org/docs/reference/formats/presentations/revealjs.html. |
Beta Was this translation helpful? Give feedback.
-
Oh sorry, I've used the wrong expression. I was talking about custom themes (Revealjs-themes, HTML-themes). I've seen, that if a put a |
Beta Was this translation helpful? Give feedback.
-
Just to provide a direct answer to the question, even if this practice is discouraged, to use a quarto html theme across multiple reports you need to provide the full path (i.e. without using the ~ symbol or relative paths) to the .css and/or .scss files used, like this:
|
Beta Was this translation helpful? Give feedback.
Oh sorry, I've used the wrong expression. I was talking about custom themes (Revealjs-themes, HTML-themes).
I've seen, that if a put a
custom.scss
in the same folder as the.qmd
-file, then Quarto can see it. But what about e.g.MyNewFancyTheme.scss
, which may be used by a lot of documents? Is there a (central) default folder to put such custom themes? Or how can I tell Quarto where to find custom themes?