> <<forEachTiddler where 'tiddler.tags.contains("SDG")'
> write '"|[["+tiddler.title+"]]|SDG:"+tiddler.fields['sdg']+"|"'You have to be careful about mixing up your single and double quotes. There are single-quotes around the write '...' clause. Thus, you can't use single-quotes *within* that clause... Thus, write: write '"|[["+tiddler.title+"]]|SDG:"+tiddler.fields["sdg"]+"|"' note: tiddler.fields is an *object*, not a function. Thus, tiddler.fields["foo"] is a reference to the "foo" property of the tiddler.fields object. enjoy, -e --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

