The aim is to facilitate diverse modes of presentation of images and their descriptions in TiddlyWiki.
I have a wiki with lots (hundreds) of image tiddlers (Bobwin.exe) each of which is a component of a narrative theme, each theme is represented by a uuid stored in a field. A narrative tiddler uses a macro to filter component tiddlers thus:
<<narrativeMaker "4a45696f-5fbd-4054-996b-523a0293727c">>
the narrativeMaker macro brings together the components of the theme and formats the visual presentation. There is a small-scale demo of the principles here: TiddlyImage — Beautifully compose & curate visual narratives
Because the uuid is passed as a parameter to the macro I wanted to find a technique to extend the narrativeMaker macro to store the uuid into a field, thereby solving the issue that I have hundreds of existing narratives and I would like to get programmatic access to their uuids. Use logic to check if the field exists, if not then create it.
Once programatic access to the uuids is possible the intention is then to extend the demo Tag Filtering tiddler such that the results are presented not just as a link, but enriched with a gallery of thumbnails for each result. Such as described here: Grid CSS in Tiddlywiki Demystified - #4 by Mohammad . Ideally each thumbnail when hovered upon would pop out with its enlarged image and text description.
Any help or guidance in accomplishing this would be much appreciated.