I want all values in a field displayed as links in the body of the same tiddler.
For instance, ‘related’ field of ‘TidA’ contains:
Queen Prince King [[Queen Victoria]] PrinceCharles
With {{!!related}}
,
‘Queen Victoria’ and ‘PrinceCharles’ are displayed as links. But ‘King’, ‘Queen’ and ‘Prince’ are not displayed as link.
<$view field="related" format="" />
using different formats does not produce desired results.
<$transclude field="related" />
produces exactly same results as {{!!related}} both, probably mean the same thing.
I guess $wikify
will need to get involved. But I have not been able to get it working.
How do I get all values displayed as links?