-
DescriptionHello, I am new to using Quarto. I'm using VSCode editor. When previewing files, it creates an HTML file as well as a directory, as part of the preview process. I have to remove these manually, otherwise they just remain there. This is especially inconvenient if I am editing files in a git repo, I do not want to have to manually clean up these intermediate files all the time. |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Apr 9, 2025
Replies: 1 comment 1 reply
-
Short answer: no because "preview" is "render + show the results" so they have to be there for you to see them.
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
atitusfwd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Short answer: no because "preview" is "render + show the results" so they have to be there for you to see them.
.gitignore
and use git to clean up the files not watched (git clean -fdX
https://git-scm.com/docs/git-clean).