On Oct 17, 7:36 am, roger <[EMAIL PROTECTED]> wrote: > I'd like to display certain tagged tiddlers in a table in the > following format, rather than sequentially as individual tiddlers (as > would happen if I select "Open All" with the OpenTaggedTiddlers > plugin).
If you install http://www.TiddlyTools.com/#InlineJavascriptPlugin then you can embed the following inline script [*] in a tiddler to produce the output format that you want --------------------------- <script> var tag="faq"; var hdr="| Date | Body | Author |\n"; var fmt="| %0 |%1: <<tiddler %1>>| %2 |\n"; var tids=store.getTaggedTiddlers(tag); var out=[hdr]; for (var i=0; i<tids.length; i++) { var when=tids[i].created.formatString("DDD, MMM DDth, YYYY<br>0hh12:0mm:0ss am"); var what=tids[i].title; var who=tids[i].modifier; out.push(fmt.format([when,what,who])); } return out.join(''); </script> --------------------------- [*] For more info on inline scripting, see http://www.TiddlyTools.com/#FAQ_ScriptsAndPlugins 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 -~----------~----~----~----~------~----~------~--~---

