$ cpp -P input.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Run this through the C/C++ preprocessor like this: | |
* | |
* cpp -nostdinc -w -P input.css.in | sed 'y/$/#/' > output.css | |
* | |
* Note that the C/C++ preprocessor always interprets octothorpe characters | |
* at beggining of lines as preprocessor directives. Use sollar signs instead | |
* to avoid the trouble. Dollar signs are changed into octothorpes using | |
* "sed" after passing the source through the preprocessor. | |
* |