Actually, this is still not quite right it seems:
I have attached an example of this still not working.
I have a template tiddler:
```
created: 20210502165510840
modified: 20210502165528840
title: template_example
| !transcluded title| <$list filter="[list[!!title]]"><$view field="title"/> </$list> |
```
and a tiddler referencing this:
```
created: 20210502165510840
modified: 20210502165528840
twsr_interval: 20210504165528840
tags: fruit
title: banana
{{||template_example}}
```
then in my widget i try to render the "banana" tiddler into a div i have created called card:
```
var t = $tw.wiki.makeTranscludeWidget(tiddler, {document:document, mode:"block", recursionMarker:"yes" });
card.innerHTML = "";
t.render(card,null);
```
but it seems the transclusion is incorrect somehow, any ideas?