I use Tiddly wiki as a database of information on a web site I manage for a company.
I have a "Changelog" index tiddler, which is basically just a transcluded list of all tiddlers that start with $:/_changelog/ . This is what I have:
{{{[prefix[$:/_changelog/]!sort[title]]}}}
I use the "$:/" so that the individual changelog entries don't show up on Tiddler lists, especially "Orphans".
An example of a title is this:
$:/_changelog/2017-04-05 Upgraded system to PHP 7
(Note the !sort[title] that sorts by date from newest to oldest.)
When displayed on the actual Changelog index tiddler, I want to remove the "$:/_changelog/" prefix. That is, LINK to "$:/_changelog/2017-04-05 Upgraded system to PHP 7" but DISPLAY the link as "2017-04-05 Upgraded system to PHP 7". Everything I've tried removes the prefix from what is actually linked -- resulting in a list of "Missing Tiddler" links.
(I know how to do it for a specified link, but not a transclude list.)
Is there any way to do this?