Installed product versions
- Visual Studio: Microsoft Visual Studio Enterprise 2022 (64-bit)
- This extension: 1.14.11
The following LESS code (tab-separated):
grid-template-areas:
'one two three'
'four five six'
'seven eight nine';
is replaced with
grid-template-areas: 'one two three' 'four five six' 'seven eight nine';
in regular .css (which is OK), but replaced with
grid-template-areas:'onetwothree' 'fourfivesix' 'seveneightnine';
in .min.css (which is wrong).
All browsers (FF, Chrome) are fine with tab-separated values.
Installed product versions
The following LESS code (tab-separated):
is replaced with
grid-template-areas: 'one two three' 'four five six' 'seven eight nine';in regular
.css(which is OK), but replaced withgrid-template-areas:'onetwothree' 'fourfivesix' 'seveneightnine';in
.min.css(which is wrong).All browsers (FF, Chrome) are fine with tab-separated values.