> OK...I have put some simple examples in an empty TW here -
> http://dl.dropbox.com/u/284644/empty.html
This is not exactly a *minimal* test case, so I'm not sure what exactly
to look for - however, the following line looks very dodgy:
<div class='viewer' macro='tiddler Format with:
{{[[tiddler.title]]##contexto}} tiddler.title##formato'></div>
You want the "contexto" and "formato" sections from current tiddler to
be filled in there? Well, for one thing, your syntax is wrong - it
should look more like this:
<div class='viewer' macro='tiddler Format with: {{"[[" + tiddler.title +
"##contexto]]"}} {{"[[" + tiddler.title + "##formato]]"}}'></div>
However, I don't think that will work, as the tiddler macro's "with"
argument probably doesn't support section references that way. So you
might have to use the getTiddlerText function:
<div class='viewer' macro='tiddler Format with:
{{store.getTiddlerText(tiddler.title + "##contexto")}}
{{store.getTiddlerText(tiddler.title + "##formato")}}'></div>
-- F.
--
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.