> var fmt="| %0 |%1: <<tiddler [[%1]]>>| %2 |\n";
Adding the [[...]] was exactly the right thing to do. > Is it possible to code the script so that the tiddlers are displayed > in descending order (newest to oldest) in the table? Replace this: var tids=store.getTaggedTiddlers(tag); with: var tids=store.getTaggedTiddlers(tag,'modified').reverse(); 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 -~----------~----~----~----~------~----~------~--~---

