If I create a node and set
text:{title:"this title",'data-SomeAttribute':"somevalue"}
the node renders as
<p>this title</p><p>somevalue<p>
AND places
data-SomeAttribute="somevalue"
in the node div tag. Is that intended behavior? I can do a CSS hack "display:none" for the node-data-SomeAttribute class so it doesn't show up in my node, but that seems lame.
If I create a node and set
text:{title:"this title",'data-SomeAttribute':"somevalue"}
the node renders as<p>this title</p><p>somevalue<p>
AND placesdata-SomeAttribute="somevalue"
in the node div tag. Is that intended behavior? I can do a CSS hack "display:none" for thenode-data-SomeAttribute
class so it doesn't show up in my node, but that seems lame.