Hi Jon, > I don't think it works for tiddler names composed of more than one word. > It will open "Tiddler" and will also open this when you want to open > "Tiddler name". >
Haha, I was fearing this could happen. :D The simple example you are seeing is... <<pop Click! Jack.jpg pretty>> Notice how everything is strictly individual terms separated by a space. Assume that you'd want to show *Click me!* and your image tiddler was *Jack In The Sack.jpg*, then at least you needed to invoke the pop macro like so... <<pop "Click me!" "Jack In The Sack.jpg" pretty>> Notice how the parameters are now enclosed in quotes. That is always a more safe choice! Even safer would be... <<pop label:"Click me!" content:"Jack In The Sack.jpg" pop-class:"pretty">> This way, if the stupid developer, being me in this case, ever messes with the sequence of parameters, your macro should still work in the future, provided he didn't also rename them. Here's a funny stumbling block... <<pop Jack:jack:jack! Jack.jpg pretty>> While you might think the first parameter would be "Jack:jack:jack!", it really is interpreted as... 1st parameter => name="Jack" & value = "jack:jack!" You definitely want to make sure you use quotes when your parameters come from a macro, e.g.: \define mymacro(my-parameter) <<some-other-macro "$my-parameter$">> \end Sometimes a macro parameter can even be passed having a quote, so to avoid any problems you're even more safe doing... \define mymacro(my-parameter) <$macrocall name="some-other-macro" first-parameter-name= """$my-parameter$"""/> \end Notice how with the MacroCallWidget <http://tiddlywiki.com/#MacroCallWidget> ... 1. you need to specifically name your parameters 2. you can enclose your parameter using triple double-quotes so as to cater for any double-quotes safely being passed down Best wishes, — tb -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/105fd654-c8d3-423c-89fa-099c812d9e01%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

