I want a compact neat way to present the full listing of images on
tiddlywiki.com whose tiddlers are both tagged *$:/tags/Image* and titles
prefixed by *$:/core/images/*
There might be better ways of doing it than the way I am trying, so any
other suggestions would be great!
On the tiddlywiki.com website, the following code:
- makes a Table
- in the first row, lists in separate cells:
- the first 6 images for tiddlers tagged $:/tags/Image
- puts the suffix of the tiddler title below each image
<$set name="limit" value="6">
<table style="width:80%">
<tr>
<$list filter="[all[shadows]tag[$:/tags/Image]limit<limit>]">
<td>
<$set name="image" value=<<currentTiddler>>>
<$list filter="[<image>removeprefix[$:/core/images/]]">
<span class="doc-button">
<$transclude tiddler=<<image>>/> <br><<currentTiddler>>
</span>
</$list>
</$set>
</td>
</$list>
</tr>
</table>
</$set>
There are an unknown number of images. In this case it is 104 images.
<$count filter="[all[shadows]tag[$:/tags/Image]]"/>
Major Issue: I want to list all of them using multiple rows. In this case,
about 18 rows.
Minor issue: I want to get rid of that first empty column.
I would appreciate some help.
Thanks.
--
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/376392a5-0783-4e77-9a76-9bc6042f03ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.