Hi Andy > I want to automatically transclude tiddlers with a specific tag into > another tiddler. If I had a tiddler called "questions", I would want to > automatically transclude all tiddlers with the tag "question" or > "questions" into that tiddler. Is there a plugin that can accomplish this?
Titles(& links to tiddlers), sections, slices, fields or everything?? Titles: <<list filter [tag[question]]>> Sections <<list filter [tag[question]] template:A>> In tiddler A write: <<view ##ExampleSection text>> Slices <<list filter [tag[question]] template:B>> In tiddler B write: <<view ::ExampleSlice text>> Custom fields: <<list filter [tag[question]] template:C>> In tiddler C write: <<view examplefield wikified>> Standard fields <<list filter [tag[question]] template:D>> In tiddler D write: <<view created date>> <<view modified date "YYYY">> All text + title link: <<list filter [tag[question]] template:E>> In tiddler E write: <<view title link>> <<view text wikified>> ---- A simpler (and more automatic) solution might be to insert the TagglyTaggingPlugin into your ViewTemplate... (as discussed here: http://groups.google.com/group/tiddlywiki/browse_thread/thread/a046c48ed696888f) Cheers Måns Mårtensson -- 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.

