We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lessc should provide an option for comments to be preserved. Currently it preserves block comments and removes inline or // comments.
lessc
//
To reproduce:
// Main comment /** comment with block **/ body { width: 100%; // inline comment }
Current behavior:
/** comment with block **/ body { width: 100%; }
Expected behavior:
/** Main comment **/ /** comment with block **/ body { width: 100%; /** inline comment **/ }
Environment information:
less
v4.2.0
nodejs
v18.18.0
operating system
macos
The text was updated successfully, but these errors were encountered:
No branches or pull requests
lessc
should provide an option for comments to be preserved. Currently it preserves block comments and removes inline or//
comments.To reproduce:
Current behavior:
Expected behavior:
Environment information:
less
version:v4.2.0
nodejs
version:v18.18.0
operating system
:macos
The text was updated successfully, but these errors were encountered: