コメントを破棄

ルール、セレクタ、宣言の中と周辺のコメントを除去します。 ただし、!でマークされた特殊なコメントはデフォルトで保持されます。

入力

/*! license */
.box {
    /* Red headings */
    color: red;
}

出力

/*! license */
.box {
    color: red;
}