CSSParser is a Pharo library that provides an object model and tools to read, interpret, and manipulate CSS stylesheets, including support for parsing .css files
# CSSParser A CSS parser for [Pharo](https://pharo.org), providing a model and tools to read, interpret, and manipulate CSS stylesheets. [](https://github.com/pharo-contributions/CSSParser/actions/workflows/CI.yml) [](https://pharo.org) [](https://pharo.org) [](https://pharo.org) ## How to get CSSParser To install a version of CSSParser, use one the following scripts inside a playground or in your project baseline. ### Latest development version ```st Metacello new baseline: 'CSSParser'; repository: 'github://pharo-contributions/CSSParser:main'; onConflictUseLoaded; load ``` ### Add in your baseline ```st spec baseline: 'CSSParser' with: [ spec repository: 'github://pharo-contributions/CSSParser:main' ]. ``` ## Model CSSParser provides an object model for CSS syntax and structure.  ## Origin project Originally inspired by the [HTML/CSS Parser for Squeak](http://www.squeaksource.com/htmlcssparser/).