I would like to include a LESS variable inside the string content of my @import statement . . .
@my-font-name: Georgia;
@import "http://fonts.googleapis.com/css?family=Open+Sans:400,300,600|@{my-font-name}:400,300,700";
However, in the processed CSS, there is no transformation and it just looks the same:
@import "http://fonts.googleapis.com/css?family=Open+Sans:400,300,600|@{my-font-name}:400,300,700";
where I would prefer it to be processed like this:
@import "http://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Georgia:400,300,700";
Is there any solution?