Insert Unicode Strings in CleverCSS

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.

+3
2

, escape-, / ? " CSS - " .

, .

CleverCSS Unicode?

+2

(CleverCSS 0.1) , _r_string ( 414) - , . RE, _string_re, ( 1374). process_string() ( 1359), , Unicode.

, , , , . , process_string() / , , int-intos go-outofs.

??? .

+1

Source: https://habr.com/ru/post/1735866/