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
It seems like the css-beautify parser gets confused when a comment include an url.
css-beautify
The following code :
.selector1 { margin: 0; /* This is a comment including an url http://domain.com/path/to/file.ext */ } .selector2 { height: 50px; }
Gets converted to:
.selector1 { margin: 0; /* This is a comment including an url http://domain.com/path/to/file.ext * } .selector2 { height: 50px; }
Notice how the ending */ of the comment containing the url gets messed up.
*/
The text was updated successfully, but these errors were encountered:
Same as #506
Sorry, something went wrong.
52a591f
No branches or pull requests
It seems like the
css-beautify
parser gets confused when a comment include an url.The following code :
Gets converted to:
Notice how the ending
*/
of the comment containing the url gets messed up.The text was updated successfully, but these errors were encountered: