I want to do this:
.classname {
color: red
a& {
color: blue;
}
}
and for it to compile to:
.classname {
color: red;
}
a.classname {
color: blue;
}
Is there syntax available to support this? I have tried using a&, #{a&} and the compass function #{append-selector("a", "&")} but they don't compile, a & does, but results, obviously, in a .classname rather than a.classname.