addendum
To get the bulleted indented effect you asked for add * and **
like this:
<<forEachTiddler where 'tiddler.tags.contains("project")'
write
 '"*[["+tiddler.title+"]]
\n**summary:"+store.getTiddlerSlice(tiddler.title,"summary")+"\n"'>>

If you really want to "get your hands in the guts" of TiddlyWiki - and
want to learn some javascript, you should ofcourse use Eric's
example :-)

Cheers Måns Mårtensson

On 23 Feb., 20:46, Måns <[email protected]> wrote:
> Hi TW-Imiller
>
> Install Abego-software's ForeachTiddlerPlugin (http://tiddlywiki.abego-
> software.de/#ForEachTiddlerPlugin) write:
> <<forEachTiddler where 'tiddler.tags.contains("project")'
> write
>  '"[["+tiddler.title+"]]
> \nsummary:"+store.getTiddlerSlice(tiddler.title,"summary")+"\n"'>>
>
> For a more advanced table with sortable columns (needs Saq's
> TableSortingPluginhttp://tw.lewcid.org/#TableSortingPlugin) and a max
> limit "(index < 100)?"... write:
>
> <<forEachTiddler where 'tiddler.tags.contains("project")'
> sortBy 'tiddler.title.toUpperCase()'
> write
>  '(index < 100)? "|"+(index+1)+"|[["+tiddler.title
> +"]]|"+store.getTiddlerSlice(tiddler.title,"summary")+" |\n" : ""'
>               begin '"|sortable|k\n"
> +"| # |projects|summary|h\n"'
> end 'count+" tiddler(s) tagged with project\n"' none '"no tiddlers are
> tagged with project \n"'>>
>
> 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.

Reply via email to