Backlinks[] also for transcluded tiddlers

Hello Experts,

I am using the backlink[] function to generate a list.

But I recognized that those tiddlers where the origin tiddler is transcluded are not part of the list.

Here the example code:

created: 20241213100106264
creator: Team
modified: 20241213100140942
modifier: Team
tags: 
title: Tiddler_C

{{Tiddler_A}}
created: 20241213100009083
creator: Team
modified: 20241213100055364
modifier: Team
tags: 
title: Tiddler_B

[[Link to Tiddler_A|Tiddler_A]]
created: 20241213095943305
creator: Team
modified: 20241213100301427
modifier: Team
tags: 
title: Tiddler_A

<<list-links filter:"[<currentTiddler>backlinks[]]">>

Will result in
image

How I can extend the list to have all Tiddlers listed, also Tiddler_B where Tiddler_A is not linked but transcluded?

Thx in advance
Stefan

It is a different operator: backtranscludes: https://tiddlywiki.com/#backtranscludes%20Operator

2 Likes

Thanks @Mohammad for quick support but it failed

Is it a bug or a misunderstanding that it returns Tiddler_A and not Tiddler_C?

<<list-links filter:"[<currentTiddler>backtransclude[]]">>

Hi

The correct spelling is backtranscludes

<<list-links filter:"[<currentTiddler>backtranscludes[]]">>

Fred

1 Like

Hi @tw-FRed,

thank you :slight_smile:

1 Like