Hi - I'm trying to list a Tiddler's fields by the value that they have, and I'm struggling with it.
This is what I have currently:
<$list filter=
[is[current]fields[]!regexp[^(text|bag|revision|type|title|modifier|modified|creator|created|draft.title|draft.of|tags)$]] variable="currentField">
<<currentField>> <$view field=<<currentField>>/>
</$list>
What that shows is the name and value of all fields that the tiddler has, that aren't out of the box (if there's a more graceful way to block these, I'd be grateful).
What I'd like to do, is to filter the list down by checking it's value (if value is "1", then display). Is this possible?