This properly links to the current tiddler in a table cell:
<td><$link>{{!!title}}</$link></td>
But all the tiddlers in this table share a common prefix, which I’d like to remove. And I can’t seem to figure out the syntax. This removes the prefix:
(Side question: is there a simpler version of this?)
But then the link is to the non-existent prefix-removed tiddler. That is, for a tiddler with the title MyPrefix: Some Title, the link is the same as the body, Some Title. The body is what I want, the link is not.
Note that using the trim[] filter operator instead of removeprefix[] allows the link text to be displayed even if the current tiddler title doesn’t have the "MyPrefix: " leading text.
Thank you. trim is a very useful hint. I’m not sure when and why {currentTiddler} got in there. One of the results of flailing is that everything including the kitchen sink sometimes gets thrown in and not always removed when something finally works.