I'm trying to use tiddlywiki to build a store of parts I ordered online. Each tiddly represents one part and has several fields, such as price or order-number... How can I use Tiddlywiki fields within the Tiddlywiki markup or HTML, eg. how can I make this to work:
<a href="distributor.org/search?q={{!!order-number}}">View Online</a>
I would like that Tiddlywiki replaces {{!!order-number}}
by the value of the field order-number. But unfortunatly, {{!!order-number}}
is not rendered.
Note that in the following snippet, it works partially:
<a href="distributor.org/search?q={{!!order-number}}">View Online {{!!order-number}}</a>
Specifiyng the field between the a-tag (not in href) is render correctly, showing the value of the field {{!!order-number}}
.