Need help with a field transclusion inside a loop

I am struggling to display the field in the:

<td>{{!!<field>}}</td>

part of:

\procedure T-table(columns:"Col1 Col2" field_names:"f1 f2")
field_names=<<field_names>>
<table>
  <tr>
    <th>Tiddler</th>
    <$list filter=<<columns>>>
      <th><<currentTiddler>></th>
    </$list>
  </tr>
  <$list filter="[all[current]tagging[]!has[draft.of]]">
    <tr>
      <td><<currentTiddler>></td>
      <$list variable=field filter=<<field_names>>>
        <td>{{!!<field>}}</td>
      </$list>
    </tr>
  </$list>
</table>
\end

I feel lost (as always) with TW mechanics. :face_with_head_bandage: :weary:

Instead of {{!!<field>}} try <$transclude $field=<<field>>/>

I did not test the code myself

1 Like