-
DescriptionI have several output files generated and it's getting difficult to navigate. I'm looking for a config/solution to group outputs by format as follows: docs.qmd
outputs
├─ html
│ ├─ docs.html
│ └─ img
│ └─ sample.png
└─ gfm
└─ docs.md Right now the project:
type: website
output-dir: "outputs"
execute-dir: "file" |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Make a post-render script that organise your files. |
Beta Was this translation helpful? Give feedback.
-
Another solution could be to use different project profiles with different |
Beta Was this translation helpful? Give feedback.
I'm not sure what you mean. You have a
project:
key in your_quarto.yml
, and then otherproject:
keys in your project profile YAML. Quarto should then merge those objects whenever the different profiles are active. See the documentation.