Closed
Description
When placing numbers before underscores in function variables, these seem to be changed to include a space character between the two.
Take the following less snippet:
@type: 5_large;
.icon-@{type} {
background-image: ~"url(/img/icon/@{type}.svg)";
}
The output is as follows, notice the space between 5 and the underscore:
.icon-5 _large {
background-image: url(../img/icon/5 _large.svg);
}