less2sass icon indicating copy to clipboard operation
less2sass copied to clipboard

interpolation issue

Open Broutard opened this issue 9 years ago • 2 comments

Interpolation DOC

less code

 @media @desk{
        padding-left: 20px;
    }

is converted to this scss code

 @media $desk{
        padding-left: 20px;
    }

instead of

 @media #{$desk}{
        padding-left: 20px;
    }

Broutard avatar Dec 14 '16 20:12 Broutard

@Broutard thanks for the notice about this. A regex replacement to handle this would be appreciated, if not a PR.

swrobel avatar Dec 14 '16 21:12 swrobel

Maybe

'@(?!font-face|import|media|keyframes|-|{)(\w+)(?=\s*[{|@])' => '#{$\\1}'

https://regex101.com/r/dBwcAs/3

Broutard avatar Dec 22 '16 11:12 Broutard