Hello,
I have a json object which contains fields with whitespace in their names (e.g. { "My Name" : "Bob" } ).
I'm trying to render those using dust templates, like this:
<span>{'My Name'}</span>
However this does not render the field (whatever is enclosed in single quotes gets rendered).
I tried other approaches:
<span>{My Name}</span>
<span>{"My Name"}</span>
But those didn't work either.