On Oct 15, 5:23 pm, Trey <[email protected]> wrote: > I was hoping to use FeT and PartTiddlerPlugin to create a dynamic > daily aggregate tiddler. Based on it's title (say 2011.10.15) this > tiddler would use FeT to go looking for <part 2011.10.15>...</part> in > all tiddlers, and print the full text of what it finds. > Can anyone think of an alternate way to get the same functionality? > (maybe using different plugins?)
Use http://www.TiddlyTools.com/#InlineJavascriptPlugin instead of FET Use TWCore *section* syntax instead of PartTiddlerPlugin syntax <script> var out=""; var tids=store.getTiddlers(); for (var i=0; i<tids.length; tids++) out+=store.getTiddlerText(tids[i].title+"##"+tiddler.title,""); return out; </script> To define the sections in the tiddlers, write something like: !2011.10.15 content for this section !end You can HIDE the section by enclosing it in TW comment markers: /% !2011.10.15 content !end %/ Note: because the TWCore uses the heading syntax ("!text") to signal the start/end of each section, you cannot use the heading syntax *within* the section content. Similarly, if you are using TWCore comment markers ("/% ... %/") to hide the section you cannot use comment markers *within* that section content. To allow comment markers within the content, you can use the TWCore's "CSS class wrapper" syntax as an alternative method of hiding the section, like this": {{hidden{ !2011.10.15 content /% comment %/ !end }}} To display heading-format content within the section, use HTML sytnax: {{hidden{ !2011.10.15 <html><h3>This is a heading</h3></html> content /% comment %/ !end }}} enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios ---- TiddlyTools needs YOUR financial support... Help ME to continue to help YOU... make a generous donation today: http://www.TiddlyTools.com/#Donations Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- 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.

