I have tiddlers for books with the title of the book stored in a field called "book-title", and I want to create a link to the pdf of the book.For example say I have a tiddler containing the field "book-title=[[Oliver Twist]]".I want to create a template to generate a link of the form "[ext[Oliver Twist|.\books\Oliver Twist.pdf]]".I have tried "[ext[{{!!book-title}}|.\books\{{!!book-title}}.pdf]]" but this doesn't work.
\define book-link(title) [ext[$(title)$|.\books\$(title)$.pdf]]<$vars title={{!!book-title}}><<book-link>></$vars>