That looks good. I may be able to use that to make a version of the table 
macros that uses data tiddlers and avoids the problems with spaces and 
capitalization in names.


You have, perhaps unintentionally, set up a nice clean solution to your 
problem.
You want to use the removesuffix filter.

Try something like this:

Enter<table style="width:100%">
<tr>
   <td style="width:1%">&nbsp;</td>
   <$list filter="[tag[Location]sort[]]" variable="col">
<$list filter='[<currentTiddler>removesuffix[-Data]]' variable=CoverTiddler>
      <td style="width:1%"><$link 
to=<<CoverTiddler>>>''<<col>>''</$link></td>
   </$list>
</$list>
</tr>
<$list filter="[tag[Furniture]sort[]]" variable="row">
<$list filter='[<currentTiddler>removesuffix[-Data]]' variable=CoverTiddler>
   <tr>
      <td style="width:1%"><$link 
to=<<CoverTiddler>>>''<<row>>''</$link></td>
      <$list filter="[tag[Location]sort[]]" variable="col">
         <td style="width:1%">
            <$transclude tiddler=<<col>> index=<<row>>>-</$transclude>
         </td>
      </$list>
   </tr>
</$list>
</$list>
</table>

The add/remove prefix/suffix filters are very powerful but not always 
obvious.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f06a194d-b1b7-49a6-9e23-5516834a8ccf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to