Hello All
I'm building by first widget. It accepts an attribute and it works. Now I'm trying to create that attribute from a macro but the value from the macro, even if displayed correctly, it is not converted into text inside the attribute.
/define macro_good()
1,2,3,4,5,6
/end
/define macro_bad()
1,2,3,{{blabla!!blabla}},5,6
/end
<<macro_good>>
<<macro_bad>>
<$myWidget att=<<macro_good>>>
<$myWidget att=<<macro_bad>>>
<<macro_good>> and <<macro_bad>> display exactly the same result on the tiddler but the attribute that <$myWidget att=<<macro_bad>>> gets is the string "1,2,3,{{blabla!!blabla}},5,6" instead of "1,2,3,4,5,6"
any ideas ?
thanks