im-richard / Scaffold

Extend, combine and compress CSS
http://github.com/IAMRichardT/Scaffold/wiki
161 stars 19 forks source link

Comments break @variables blocks #26

Open pdclark opened 14 years ago

pdclark commented 14 years ago

Putting comments inside of an @variables block will break all following variables. eg:

@variables color {
    test1:#00a4e4; /* Light Blue */
    test2:#042260;
}

#header {
    color: color.test1;
    background-color: color.test2;
}

Outputs:

#header
{
    color: #00a4e4;
    background-color: color.test2;
}
anthonyshort commented 14 years ago

Hrm yeah. Ill have to strip the comments from the variable blocks before I parse them. Nice catch.