-
DescriptionI have the following directory structure:
I’d like to be able to run the render command from inside For example, I tried: cd my-dir
quarto render document.qmd --execute-dir ../other-dir But this doesn’t seem to make Quarto recognize the _quarto.yml in ../other-dir. Question: Additional context: MWE: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, because this goes against the design of Quarto making It's very unlikely to say the least that Quarto will ever allow you to do something like that. Either move
You are describing profiles I believe: https://quarto.org/docs/projects/profiles.html |
Beta Was this translation helpful? Give feedback.
No, because this goes against the design of Quarto making
_quarto.yml
the root of a project and that all resources must be within that project.It's very unlikely to say the least that Quarto will ever allow you to do something like that.
Either move
_quarto.yml
to a parent directory, or duplicate it.execute-dir
is for code cells. It defines where R/Jupyter/etc. code is executed. it does nothing else.You are describing profiles I believe: https://quarto.org/docs/projects/profiles.html