@Rahul
 
I don't know the intricacies of the macro you intend to use but I'm 
guessing you wish to pass the tiddler that is current in the listwidget. 

But for example this

<<details sum:"{{!!title}}" src:<$transclude mode="block"/> >>

passes the literal string {{!!title}} and not the current tiddlers actual 
title.

Also, the argument to src needs to be enclosed properly assuming you DO 
want to send that as a string. In that case it'd be

src:"""<$transclude mode="block"/>"""

But, overall, I suspect that you are intending for the arguments to the 
details macro to be evaluated prior to being sent.  If this is the case 
then you had better use the macrocall widget instead of calling the macro 
with the shortform (<<...>>) as you do now, i.e

<$macrocall $name=details sum={{!!title}} src={{!!text}} />

(possibly the {{!!text}} will ruin the block format, but try it first to 
see if it does)

OK, that should at least be some steps on the way.

<:-)

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a09df452-67a8-4ae4-ba4d-3eb33943eda2%40googlegroups.com.

Reply via email to