Suppose I have a post that declares this in its metadata:
---
outputs:
- special
...
as well as an accompanying format definition in my config:
outputFormats:
special:
name: special
...
How can I use a (where ... "OutputFormats" ???) to select only posts which will be built in a format named special? Every obvious variation of where I tried to so far results in selecting nothing: OutputFormats is not a list of string names of output formats. I had to resort to introducing a cascading flag to duplicate this information, but I’d rather take it out if I can.
And how, exactly, would you translate that to selecting posts from a complete list of posts by output format? Because you’re ranging across possible formats, not posts, here.