[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-06 Thread talha131
Thank you Saq. This was helpful. I ran it on a couple of shadow tiddlers and fixed my configuration using compareTiddlerText. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it,

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-02 Thread TW Tones
Funny; <$list filter="""[[$:/core/ui/ListItemTemplate]subtiddlerfields[$:/core]]""" emptyMessage="(empty)"> <$link><$view field="title" /> Worked for me Sorry, Forgot to hit POST yesterday We have to now ask for the content of the fields get operator, but we need

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-02 Thread Saq Imtiaz
@talha131 The subtiddlerfields filter is supposed to do just that, give you a list of fields that exist in the subtiddlers of a plugin. So I am not entirely sure why you were pointed in that direction, maybe Tony had some other approach in mind that I cannot think of at the moment. To see the

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-02 Thread talha131
Tones, can you please share an example of using subtiddlerfields correctly. This is what I have tried. <$list filter="""[[$:/core/ui/ListItemTemplate]subtiddlerfields[$:/core]]""" emptyMessage="(empty)"> <$link><$view field="title" /> It shows me “title” and “text”,

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-02 Thread talha131
Thank you Tones. For anyone else coming to this thread, this is how you can find the “plugin that contains a shadow tiddler”. For example, to find the source plugin of $:/core/ui/ListItemTemplate, use this code ! Show Plugin that contains the Shadow Tiddler <$list

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-01 Thread TW Tones
Talha Your welcome, by the way I said how To find the original content you can use the subtiddlerfields operator but you need to know the plugin it belongs to Since we "*need to know the plugin it belongs to*“ If you know the plugin eg

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-01 Thread talha131
Keep in mind that the editor preview has an option to compare the current overridden shadow with the shadow Thank you Tones. This is valuable. I was not aware of this feature. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-08-31 Thread TW Tones
FYI: If the shadow has being edited <$text text={{$:/core/ui/ListItemTemplate}}/> will show the updated content, not the original content. To find the original content you can use the https://tiddlywiki.com/#subtiddlerfields%20Operator but you need to know the plugin it belongs to

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-08-31 Thread talha131
Thanks a lot, Saq. This fixed the issue <$text text={{$:/core/ui/ListItemTemplate}}/> ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-08-31 Thread Saq Imtiaz
Try this: <$text text={{$:/core/ui/ListItemTemplate}}/> On Monday, August 31, 2020 at 12:06:09 PM UTC+2 talha131 wrote: > Is it possible to transclude the contents of a shadow tiddler? > > I want to display raw contents of $:/core/ui/ListItemTemplate inside a > tiddler. > > I have tried > >