Hi, I have a macro (code below) and it accepts a paramter that defaults to <<currentTiddler>>. It then displays that parameter followed by a table filtered on tags matching the parameter. When provided a parameter explicitly it works fine. When it defaults, it displays the parameter fine but the filter fails for some reason. Any idea of what I’m messing up would be appreciated.
\define org-table(tagname:<<currentTiddler>>)
$tagname$
<table>
<thead>
<tr>
<th>Family</th>
<th>Type</th>
<th>Summary</th>
</tr>
</thead>
<tbody>
<$list filter="[tag[$tagname$]]">
<tr>
<td><$link /></td>
<td><<org-type>></td>
<td>{{!!summary}}</td>
</tr>
</$list>
</tbody>
</table>
\end
