I'm adding HTML Tag Attributes to a section in a Gantry 5 layout, using the section's settings. But any special characters are rendered as Unicode Hex Character Codes in the resultant HTML. So adding the tag
data-0
to the section
g-mainbottom1
with the attribute
background-position: 50% 100px
results in this div:
<section id="g-mainbottom1" data-0="background-position: 50% 100px;">
rather than the desired
<section id="g-mainbottom1" data-0="background-position: 50% 100px;">
Assuming there's nothing I can do to prevent the conversion behaviour, is there anything I can do with the actual text to prevenmt these characters from being converted Unicode Hex equivalents?