I am trying to passing in JSON into a custom tag
My tag looks like
<b:column span="{xs=12, md=8}">...
When I get around to processing it I want to use:
Myspan = DeserializeJSON(attributes.span);
But it just crashes.
I can use
attributes.span = attributes.span.replacelist('{,=', '{",":');
attributes.span = attributes.span.replace(', ', ', "', "all");
Myspan = DeserializeJSON(attributes.span);
But this looks like a hack