Hi,
I want to list certain fieldnames and fieldvalues within the body of the corresponding current tiddler. I am naming these fieldnames starting with ‘kp_’ for filtering which fields to show and want to remove this prefix when displayed in body of tiddler.
I thought of using removeprefix on <<fieldname>>
, but could not figure out the syntax.
Thanks, KP
<$list filter="[<currentTiddler>fields[]prefix[kp_]]" variable=fieldname>
<$list filter="[<currentTiddler>get<fieldname>]" variable=field-value>
<tr><td><<fieldname>></td><td><<field-value>></td></tr>
</$list>
</$list>