I have a stylesheet with the following code:
.author-name:before {
content:"by: ";
}
When I run this through the YUI Compressor, I get:
.author-name:before{content:"by:"}
This is a problem because it destroys given spaces. I thought using special YUI Compressor comments, for example:
.author-name:before {
content: "by: ";
}
... may help, but it doesn't seem to be. In addition, the comments themselves were destroyed. My impression is based on the fact that comments in JavaScript starting with /*! are saved , but this does not actually happen.
The process of processing my assembly for unminify is nearing completion, is there any way to do this? We are currently using version 2.3.5 of the YUI compressor and are working with flags--charset utf8 -v -o
, , YUI Compressor content: CSS , ?