Tobias,

Suppose you want to generate an unordered list of tiddler titles, with each 
title linking back to its respective tiddler. Something like:

jQuery(function() {

     var tiddlers = store.getTaggedTiddlers("whatever");

     for (var j = 0; j < tiddlers.length; j++) {

          jQuery('#myList').append('<li>' + *wikify(tiddlers[j].title,????)*+ 
'</li>');
     }
}
});

What would you use for the *place????* parameter in wikify()?

Thanks,
Adam

On Thursday, January 31, 2013 12:18:39 AM UTC-8, Tobias Beer wrote:
>
> Have you tried using the wikify function in said plugin?
>
> wikify(what,where);
>
> what represents the TW markup you want to render and where the dom node 
> to which you want it appended.
>
> That will make things a lot easier compared to rebuilding tw internals.
>
> Cheers, Tobias.
>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to