> its - <<wikify {{"<html><img src ='Fotos/"+tiddler.title+".jpeg'
> style='width:300px'/></html>"}}>>
Instead of using an eval param to generate the desired output, you
should use the 'substitution marker' feature of <<wikify>>, like this:
<<wikify
"<html><img src ='Fotos/%0.jpeg' style='width:300px'/></html>"
{{tiddler.title}}>>
The "%0" in the format string will be automatically replaced with the
value of the eval param that follows it (i.e, {{tiddler.title}})
Also, if you install
http://www.TiddlyTools.com/#ImageSizePlugin
then you could avoid using HTML syntax entirely and write:
<<wikify "[img(300,auto)[Fotos/%0.jpeg]]" {{tiddler.title}}>>
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.