Hello,
What's the correct syntax for transcluding a field without wikifying it? I've searched in the documentation but failed to find a working solution (so, apologies if I've overlooked something obvious).
What I'm trying to do is list specific tiddlers in a table with the exact (literal) values of their respective list fields -- this should include the '[[ ]]' brackets that are added for list items with spaces.
This is my code:
<table>
<$list filter="[all[tiddlers]search:title[_list]]">
<tr><td>{{!!title}}</td><td>{{!!list}}</td></tr>
</$list>
</table>
I'm aware that the problem lies in the...
...reference that wikifies its output by default.
How could I replace it to get the literal value of the list field?
Thank you for your help!
Regards,
Hubert