You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
Line-based comments can appear in output. Example:
@font-face {
src: url('./fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
// a line based comment that should be stripped
url('./fontawesome-webfont.woff') format('woff'),
}
Run that through lessc and you get this:
@font-face {
src: url('./fontawesome-webfont.eot?#iefix') format('embedded-opentype'), // a line based comment that should be stripped url('./fontawesome-webfont.woff') format('woff');
}
Which is very surprising compared to line based comments in other languages.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Line-based comments can appear in output. Example:
Run that through lessc and you get this:
Which is very surprising compared to line based comments in other languages.
The text was updated successfully, but these errors were encountered: