suspect I am pushing my luck with TW5 here, but here is what I am trying to do.
Simply if a field exists in a tid display it:
{{{ [<currentTiddler>has:field[built]then{!!built}] }}}
That works fine of course.
Now what I really want to do is prefix the field displayed with some text "The property was built in: "
Tried this but it does not work, but it should give you an idea of what I am trying to do:
{{{ [<currentTiddler>has:field[built]then[The property was built in: ]] {!!built} }}}
This page suggests I need a macro.
So tried this:
\define linkup() [[The property was built in: |$(currentTiddler)$-built]]
<<linkup>>
Note: All my failed attempts display formatted as links when I just want plain text.
Thanks.