I've solved it.
<script>
var out = []
var tids=store.getTaggedTiddlers('Q');
for (var i=0; i<tids.length; i++) {
var prim=store.getValue(tids[i].title ,"primary");
var d='|[['+tids[i].title+']] |' +prim+'|';
out.push(d);
}
return out.join('\n');
</script>
Interestingly, wikifying the field adds un necesary double brackets.
I've added my fields in using visualTW field editor plugin using
double brackets.
Alex
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---