The quick answer is you use tag{!!title} instead. And for reusing it you 
want to use a macro.

To make the macro make a new tiddler and give it whatever name you want, 
then put this as the text of the tiddler:

\define someUsefulMacroName()
<$list filter="[tag[Book]tag{!!title}sort[title]]">
  <$link to={{!!title}}><$view field="title"/></$link>
  * Library: <$view field="library"/>
</$list>
\end

and tag the tiddler with $:/tags/Macro

Then anywhere you put <<someUsefulMacroName>> will display the same thing 
as if you had put all of the code there.

It is more advanced, but you can have this happen automatically in certain 
tiddlers using conditional view templates described here: 
https://tobibeer.github.io/tb5/#Conditional%20ViewTemplate%20Section

Some more about using fields and variables:

https://tobibeer.github.io/tb5/#Variables%20vs.%20Parameters

More about macros:

http://tiddlywiki.com/#Macros
http://inmysocks.tiddlyspot.com/#How%20to%20make%20macros

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6d3213d5-81d3-40a0-9b59-385ff010842e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to