An example of how to Add quality assurance checks to an Obsidian vault but for a checkbox property where isTruthy() is required. This case uses the publish property to check for:
- present and unchecked (false)
- missing
The check is scoped to the public folder and its subfolders.
views:
- type: table
name: Table
filters:
and:
- file.inFolder("public")
- or:
- publish == false
- "!publish.isTruthy()"
order:
- file.name
- publish