> Now I wonder what code I have to add to tiddler DefaultTiddlers. The > following code does not work: > [[AlwaysOpenAtStart]] > <<list filter [tag[defaultTiddler]]>>
You are SO very close! During startup handling, the content of DefaultTiddlers is processed as a **whitespace-separated list of tiddlers AND/OR [tag[...]] filters**, so you can't use macros (such as <<list>>) to produce the list of startup tiddlers. However, you CAN use the tag filter syntax *directly* in the space-separated list, like this: SomeTiddler [tag[defaultTiddler]] AnotherTiddler [[Tiddler With Spaces]] etc. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- 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.

