Hi James
> I have a tiddler that lists a number of books and their authors.
> <<forEachTiddler
> where
> 'tiddler.tags.contains("book")'
> sortBy
> tiddler.data("author")
> ascending
>
> write
> '"|"+tiddler.data("author")+"|[["+tiddler.title+"]]|\n"''
This might do what you want (untested...):
<<forEachTiddler where 'tiddler.tags.contains("book")'
sortBy
tiddler.data("author")
ascending
write
'"|Author|Book Title|h\n||"+tiddler.data("author")+"|[["+tiddler.title
+"]]|\n"'>>
"\n" (without the quotes) creates linebreaks and the "h" (without the
quotes) formats the row as a header..
Cheers Måns Mårtensson