I would like to include a LESS variable in the contents of the string of my @import., Operator.
@my-font-name: Georgia; @import "http://fonts.googleapis.com/css?family=Open+Sans:400,300,600|@{my-font-name}:400,300,700";
However, there is no conversion in the processed CSS, and it looks simple:
@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 handled as follows:
@import "http://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Georgia:400,300,700";
Is there any solution?
source share