Ignored render targets behave differently depending on method of ignore #4331
-
I've observed some surprising behavior on a website that I have and I'm curious whether this is the intended behavior or not. Here's a simplification of the website that I'm working with.
The
My goal is to only render the material in the
Approach 1 involves changing
The result is that none of the .qmd in
When I view the webpage, there is a blank listing field for the second post, reflecting that lack of metadata. Approach 2 also prevents the rendering of anything in My guess is that this is a similar issue to the one that came up in #3879 . The order of operations on
Is this correct? If so, is it intentional that 1. doesn't consult Thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Did you know you can ignore files by setting a I believe the negative glob is not really working as it should or not handled expectedly by Quarto when rendering the website, i.e., likely a bug to me. |
Beta Was this translation helpful? Give feedback.
-
I don't believe that the
The above example works with our default blog to exclude the Depending upon your goal, you might also consider using the |
Beta Was this translation helpful? Give feedback.
I don't believe that the
render
key is valid under thewebsite
key. I believe it belongs here:The above example works with our default blog to exclude the
welcome
post from being rendered, which appears to in turn not allow it to appear in a listing. I've attached a zip of that sample project so you can compare to see if there are differences that may explain this.blog.zip
Depending upon yo…