I’ve got a <$button>
that stores the title of a random book tiddler in a field, random-suggestion
. I’m then displaying a link to that tiddler with:
<$link to={{!!random-suggestion}}>{{!!random-suggestion}}</$link>
which essentially displays a link with Title
as its text.
I want to also display the author
field from the tiddler titled {{!!random-suggestion}}
so I’ll end up with a Author - Title
link .
What is the most TW-like manner to do that?