In my limited ForEachTiddlerPlugin knowledge, it is not likely that you can generate tags you use in a one-tab-one-tag form automatically. I think the best way is manually putting every single tag in an independent tiddler and list tiddlers with that tag. Then you can create a panel tiddler using tabbed interface <<tabs ...>> to collect them.
Cheers. octw On 10月5日, 上午6時02分, TK <[email protected]> wrote: > G'day > > The code below renders a multi tabbed 'box'. > > Each tab is labelled with the name of a tiddler. > > I would like to label each tab with the name of a tag and list the > tiddler titles under each tab. > > My feeble attempt (also below) did not work. > > Any Suggestions? > > Original Code > ---------------------------------------- > > <<forEachTiddler > where > 'tiddler.tags.contains("SQL")' > > sortBy > 'tiddler.title.toUpperCase()' > > write '" [["+tiddler.title+" ]] \"view ["+tiddler.title+"] > \" [["+tiddler.title+"]] "' > > begin '"<<tabs txtMyAutoTab "' > > end '">"+">"' > > none '"//No tiddler tagged with \"glossar\"//"' > > > > MY attempt which does not work > ------------------------------ > > <<forEachTiddler > > sortBy > 'tiddler.title.toUpperCase()' > > write '" [["+tiddler.tag+" ]] \"view ["+tiddler.tag+"] > \" [["+tiddler.tag+"]] "' > > begin '"<<tabs txtMyAutoTab "' > > end '">"+">"' > > none '"//No tiddler tagged with \"glossar\"//"' > > > > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

