Vinvi
If the macro you are using, I presume in Shiraz you need to look at its documentation to see how to do it, or make your own.
Here is a sample that works on TiddlyWiki.com Like your own, but what is different when you use the macro list-search?
I think since you are not using one of the macros features, you do not need to use it, especially to display text.
Your could provide a template=templatetiddler where templatetiddler contains {{!!text}} but that is unnecessarily complex.
<$list filter="[tag[TableOfContents]limit[3]]">
{{!!text}}
</$list>
There is no variable= set so the currentTiddler is set for each item in the resulting list.
{{!!text}} transcludes the text field of the current tiddler.
Regards
Tones