cssprima
cssprima copied to clipboard
The most standards compliant CSS parser, written in JavaScript.
Results
2
cssprima issues
Sort by
recently updated
recently updated
newest added
Would it be possible to add comments to the AST? Something like ``` js { "type": "comment", "text": " a comment describing something ", } ```
Would it be possible to add the line/column numbers of the starting and ending points of the tokens to the AST? Something like ``` js { "type": "Identifier", "value": "color",...