> Using this structure <javascript:;><div class='tagged' macro='tagAdder > 'group' 'TagDataBase' 'custom label''></div> <javascript:;>to make the > configurations work within the <javascript:;>editTemplate the plugin > just does the default behaviour.
Since you are using single-quotes around the macro parameter values, you need to use double-quotes around the macro syntax itself, like this: <div class='tagged' macro="tagAdder 'group' 'TagDataBase' 'custom label'"></div> alternatively, you could use single-quotes surrounding the macro syntax, and double-quotes around the parameter values: <div class='tagged' macro='tagAdder "group" "TagDataBase" "custom label"'></div> note also that only one parameter, "custom label", actually needs to be in quotes, since all the other parameter values are single words without containing spaces. Thus, you could write: <div class='tagged' macro='tagAdder group TagDataBase "custom label"'></div> finally, note that you can also use doubled square brackets: [[...]], to enclose parameter values that contain spaces. This usage is particularly helpful if a macro parameter value contains both spaces *and* single-quotes, as in this case: <div class='tagged' macro="tagAdder group TagDataBase [[Jan's custom label]]"></div> enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... http://www.TiddlyTools.com/#Donations Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- 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.

