You can’t combine variable references (<<attachement_tiddler>>
) and field references (!!title
) within a short-form transclusion ({{...}})
.
To achieve the results you want, you can use “filtered transclusion”, like this:
\procedure link-attachment(attachement_tiddler:"xxx")
<$text text={{{ [<attachement_tiddler>get[title]] }}}/>
<$text text={{{ [<attachement_tiddler>get[_canonical_uri]] }}}/>
<a href={{{ [<attachement_tiddler>get[_canonical_uri]] }}}>
<$text text={{{ [<attachement_tiddler>get[title]] }}}/>
</a>
\end
Note the use of the $text
widget so that the results of the filtered transclusions are not rendered as tiddler links. Another way to do this is to first use variables to fetch the field values, like this:
\procedure link-attachment(attachement_tiddler:"xxx")
<$let title={{{ [<attachement_tiddler>get[title]] }}}
uri={{{ [<attachement_tiddler>get[_canonical_uri]] }}}>
<<title>>
<<uri>>
<a href=<<uri>>><<title>></a>
</$let>
\end
a third way to do this is to use the $tiddler
widget to set the context, and then you can use simple field transclusions to access the values, like this:
\procedure link-attachment(attachement_tiddler:"xxx")
<$tiddler tiddler=<<attachement_tiddler>>>
{{!!title}}
{{!!_canonical_uri}}
<a href={{!!_canonical_uri}}>{{!!title}}</a>
</$tiddler>
\end
enjoy,
-e