I'm using facelets, and I have a number of CSS files in webapp/styles/blueprint/*.css. They contain comments which I don't want to become visible to end-users. How can I remove them on-fly?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use YUI compressor. It will not only remove comments, but also minify the CSS (and JS) files.
See also |
|||
|
|
|
As Nick Craver said in the comments, you should, if at all, do that work as a part of your building process since css is a static resource. No runtime modifications needed. Now depending on your build process, you could write a small script that simply strips out any comments, my first approach would be regular expressions:
In this case you need to make sure that the regex "."-metacharacter includes linebreaks. Since css only allows block comments (/* ... */) and no line comments (// ... \n), this is the only thing you need to replace. |
|||
|