On Friday, September 18, 2020 at 8:20:31 PM UTC-7, Simon wrote:
<$link /><br>
<$list filter="[gsd_type[project]gsd_project<currentTiddler>]">
<$link /><br>
</$list>
</$list>
Notes:
1) The $list widget sets the value of <<currentTiddler>> unless you use the variable="something" parameter.
2) By default, text for the $link widget will match the tiddler title specified in the to=... parameter,
and the default value for the to="..."parameter is the <<currentTiddler>> value.
Thus, <$link /> is all that is needed to link to the <<currentTiddler>>.
3) Within filter syntax, the brackets surrounding an operand vary depending upon the type of value being specified:
use [...] for literal text, {...} for tiddler field or index references, and <...> for variable references.
Thus, gsd_project[{{!!title}}] is incorrect, and would be properly written as gsd_project{!!title}
and, because the outer $list has set the <<currentTiddler>> value, the filter syntax is gsd_project<currentTiddler>.
enjoy,
-e