Hi! I’m new here, so hopefully this question makes sense. I know most of the basics of TiddlyWiki, but I’m by no means an expert.
Context:
OS: Windows 11
Browser: TiddlyDesktop
TW Version: 5.3.1
In the context of my wiki, Fount
is a source/published work
I’m working on a TW for a class I’m taking, and in it I’ve got tiddler types for People and Founts. The way I currently have it set up is that Fount tiddlers have a field for author(s). People tiddlers do not have a field for Founts they have authored.
I’m currently trying to set up a view template for my Person tiddlers. I’m following the workflow outlined in Grok TiddlyWiki (Grok TiddlyWiki — Build a deep, lasting understanding of TiddlyWiki).
I want to be able to display the works authored by the Person, but only reveal that information if the Person has actually authored a Fount. I was trying to use the $reveal widget, like so:
<$reveal type=match state=!!author text=<<currentTiddler>>
Works and Publications: <$list filter="[tag[Fount]search:author[<<currentTiddler>>]!sort[year]]">
<$link to=<<currentTiddler>>><<currentTiddler>></$link>,
</$reveal>
The problem I’m running into is that I don’t know how to get the $reveal widget to search for other tiddlers with a field containing the <<currentTiddler>>
. Will the $reveal widget even work for this, or do I need to find another workflow?
Thanks!