How can I insert a Unicode CSS string in CleverCSS ?
In particular, how can I create the following CSS using CleverCSS:
li:after {
content: "\00BB \0020";
}
I figured out the CleverCSS parsing rules, but enough for the permutations that I thought were reasonable to fail, for example:
li:
content: "\\00BB \\0020" // becomes content: 'BB 0'
EDIT . My other examples and the rest of my post were not saved. Suffice it to say that I had a longer list of examples that are missing.
I would be grateful for any thoughts and input.
Brian
EDIT . I noticed that unicode insertion was one of the problems (after you started loading utf-8 encoded CSS in order). The shell of quotation marks is another one that I decided with something crazy:
content: "'".string() + " ".string() ».string() + "'".string()
Hope this helps someone else.