Continuing the discussion from Display selected fields in a Tiddler but only those with values:
Here is my working version:
\define field-list(names:"Home Occupation Residence")
<table>
<$list filter="[enlist<__names__>]" variable=name>
<$list filter="[all[current]get<name>]" variable=value>
<tr><td><<name>></td><td><<value>></td></tr>
</$list>
</$list>
</table>
\end
Ideally, I want to use some fields with spaces in the field name, so in place of Residence in the list I want to use Place of residence.
It works fine in the tiddler itself, but is it possible to modify the statement to something like:
\define field-list(names:âHome Occupation [Place of residence]â)
So that it actually works. I canât find the correct syntax, if there is one.
(I realise that spaces in field names might cause me other issues, like backwards compatability with older plugins, but Iâll see if that impacts me later.)
Thanks.