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
Context: cssnano/cssnano#925
console.log(require('postcss-selector-parser')().processSync('[ foo | bar ]')); '[ foo ]'
Expected output: [ foo | bar ].
[ foo | bar ]
Interestingly, it does work when removing some of the whitespace around the |:
|
[ foo| bar ]
[ foo|bar ]
But:
[ foo |bar ]
[ foobar ]
Maybe related to #200
The text was updated successfully, but these errors were encountered:
Yes, related, feel free to send a PR
Sorry, something went wrong.
No branches or pull requests
Context: cssnano/cssnano#925
Expected output:
[ foo | bar ]
.Interestingly, it does work when removing some of the whitespace around the
|
:[ foo| bar ]
=>[ foo|bar ]
[ foo|bar ]
=>[ foo|bar ]
But:
[ foo |bar ]
=>[ foobar ]
Maybe related to #200
The text was updated successfully, but these errors were encountered: