postcss-comment icon indicating copy to clipboard operation
postcss-comment copied to clipboard

Allow postcss to support inline comments

Results 4 postcss-comment issues
Sort by recently updated
recently updated
newest added

Pcakages: ``` "vite": "^2.3.7" "postcss": "8.2.6" "postcss-nested": "^5.0.5" "postcss-comment": "^2.0.0" ``` postcss.config.js ``` module.exports = { parser: require('postcss-comment'), plugins: { 'postcss-nested': {} } } ``` index.pcss ``` // Test @import...

The PostCSS Declaration raws (as `raws.between`) contain extra characters like `:` which cause the parser to fail. It would be nice to let the Parser tolerate these so it can...

It could be useful if the parser component of this plugin (I use the parser in another PostCSS plugin) could also differentiate between normal CSS comments (`/*`) and loud CSS...