How do I skip using _quarto.yml
for a specific document in the folder?
#5224
-
In a website project context, the settings in _quarto.yml is used during I don't see anything obvious in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I assume, you want to render a document that is part of a project, but you want to render it as a standalone document (assuming it has the proper yaml header), am I correct? |
Beta Was this translation helpful? Give feedback.
-
I think you should leverage the different project feature regarding how config and metadata are merged so that the document you want to render has only the option you need.
Hope it helps |
Beta Was this translation helpful? Give feedback.
I think you should leverage the different project feature regarding how config and metadata are merged so that the document you want to render has only the option you need.
You can split the metadata in subfolder, and inside document and it will be merged with
_quarto.yml
https://quarto.org/docs/projects/quarto-projects.html#shared-metadataIf you have different part of your project that needs to have different global config, you should make your
_quarto.yml
minimal, and use the_metadata.yml
or YAML in-document header to pass the configuration you need.You can also Project Profile to render some document with a specific profile and not the default one.
Hope it helps