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
The code looked like this before beautification:
header > div[class~="div-all"]
The code should have looked like this after beautification:
The code actually looked like this after beautification:
header > div[class ~ ="div-all"]
actual output is not compiled by SASS compiler.
OS: Linux Mint 18.3 XFCE
Brackets 1.12.0-17621 Brackets Beautify Version: 2.5.1
header > div[class~="div-all"], header > div[class~="div-go"] { margin-left: -20px; }
The text was updated successfully, but these errors were encountered:
@TudorHulban I just ran your example through v1.8.0-rc4 and the actual output now looks like:
header>div[class~="div-all"]
I'm not sure if this is better, but the issue appears to have changed. Take a look for yourself at http://jsbeautifier.org/
Sorry, something went wrong.
hi, verified in http://jsbeautifier.org/ with the below and obtained body>div[class~="div1"] which does not break the CSS selector. thank you!
Successfully merging a pull request may close this issue.
Input
The code looked like this before beautification:
Expected Output
The code should have looked like this after beautification:
Actual Output
The code actually looked like this after beautification:
Steps to Reproduce
actual output is not compiled by SASS compiler.
Environment
OS: Linux Mint 18.3 XFCE
Settings
Brackets 1.12.0-17621
Brackets Beautify Version: 2.5.1
code excerpt
The text was updated successfully, but these errors were encountered: