Reading some articles about string interpolation in LESS I've tried the following, which didn't work for me:
.wk (@property, @data) {
@property: @data;
~"-webkit-@{property}": @data;
}
If i try to compile this, using Crunch, I get an error:
Unrecognized Input
Is there another way to escape this or get this compiled?