I've been trying to implement some of custom header items from your Open Data Deep Customization example, and I've run into some issues. In the header HTML, I've added a style block and put some CSS styles in it, but the content is changed in the output after it's saved.
Below, I've added a sample snippet of the style block I added to the header CSS. CSS selectors were renamed to protect the innocent.
<SPAN class="language-css style token"><SPAN class="token tag"><SPAN class="token tag"><SPAN class="punctuation token"><</SPAN>style</SPAN><SPAN class="punctuation token">></SPAN></SPAN>
<SPAN class="selector token">.ember-view > div</SPAN> <SPAN class="punctuation token">{</SPAN>
<SPAN class="property token">border</SPAN><SPAN class="punctuation token">:</SPAN> 3px solid purple<SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="selector token">a.newlink:after</SPAN> <SPAN class="punctuation token">{</SPAN>
<SPAN class="property token">content</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"I am a new link :)"</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="property token">color</SPAN><SPAN class="punctuation token">:</SPAN> blue<SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="selector token">a.oldlink:after</SPAN> <SPAN class="punctuation token">{</SPAN>
<SPAN class="property token">content</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">'I am an old link :('</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="property token">color</SPAN><SPAN class="punctuation token">:</SPAN> red<SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="token tag"><SPAN class="token tag"><SPAN class="punctuation token"></</SPAN>style</SPAN><SPAN class="punctuation token">></SPAN></SPAN></SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>And below is the output found in the HTML:
<SPAN class="language-css style token"><SPAN class="token tag"><SPAN class="token tag"><SPAN class="punctuation token"><</SPAN>style</SPAN><SPAN class="punctuation token">></SPAN></SPAN>
.ember-view ><SPAN class="selector token">; div</SPAN> <SPAN class="punctuation token">{</SPAN>
<SPAN class="property token">border</SPAN><SPAN class="punctuation token">:</SPAN> 3px solid purple<SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="selector token">a.newlink:after</SPAN> <SPAN class="punctuation token">{</SPAN>
<SPAN class="property token">content</SPAN><SPAN class="punctuation token">:</SPAN> "<SPAN class="punctuation token">;</SPAN>I am a new <SPAN class="property token">link</SPAN> <SPAN class="punctuation token">:</SPAN><SPAN class="punctuation token">)</SPAN>"<SPAN class="punctuation token">;</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="property token">color</SPAN><SPAN class="punctuation token">:</SPAN> blue<SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="selector token">a.oldlink:after</SPAN> <SPAN class="punctuation token">{</SPAN>
<SPAN class="property token">content</SPAN><SPAN class="punctuation token">:</SPAN> '<SPAN class="punctuation token">;</SPAN>I am an old <SPAN class="property token">link</SPAN> <SPAN class="punctuation token">:</SPAN><SPAN class="punctuation token">(</SPAN>&<SPAN class="punctuation token">;</SPAN>39<SPAN class="punctuation token">;</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="property token">color</SPAN><SPAN class="punctuation token">:</SPAN> red<SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="token tag"><SPAN class="token tag"><SPAN class="punctuation token"></</SPAN>style</SPAN><SPAN class="punctuation token">></SPAN></SPAN></SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>Are there any recommendations to get around these text substitutions in style blocks, or am I limited in what I can do with styling?