Try this: write '"<<tiddler [["+tiddler.title+"/ClassNotes]]>\>"'
Note that there are two single quotes, which contain the write statement, and four double quotes, which contains the literals. Also, when using the <<...>> syntax in fET, you need to escape at least one ending > (ie: <<...>\>) within the fET. w On Apr 21, 4:43 pm, axelm <[email protected]> wrote: > Hello, > > I have a question about > thehttp://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin > > I am trying this code: > > <<forEachTiddler > where > 'tiddler.tags.contains("A Student")' > sortBy > 'tiddler.title' > write > '"|"+tiddler.title+ > "|"+store.getTiddlerSlice(tiddler.title,"SectionA")+ > "|"+store.getTiddlerSlice(tiddler.title,"SectionB")+ > "|\n" ' > begin > '"|!Tiddler|!~SectionA|!~SectionB|\n"' > >> > > but instead of this: "store.getTiddlerSlice(tiddler.title,"SectionA")" > > I want to use this: "<<tiddler [[tiddler.title/ClassNotes]]>>" > > In the tiddlers I have this inside: "<part [[ClassNotes]]> some text > </part>" > > That doesn't work. What am I doing wrong? > > It works fine when I put this in a table manually: "<<tiddler > [[tiddler.title/ClassNotes]]>>" > > axelm -- 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.

