### less: ``` css @my-variable: "alternative"; .myClass[data-genre="@{my-variable}"] { /* --- */ } ``` ### output: ``` css .myClass[data-genre="@{my-variable}"] { /* --- */ } ``` ### expected: ``` css .myClass[data-genre="alternative"] { /* --- */ } ``` the variable **does not get injected** into the selector attribute's value. is this a known issue?, is this even posible? thanks in advance!