Home

Awesome

RenoirSt

Logo

A DSL enabling programmatic cascading style sheet generation for Pharo Smalltalk

Unit Tests Coverage Status Group loading check Markdown Lint

GitHub release Pharo 7.0 Pharo 8.0 Pharo 9.0 Pharo 10 Pharo 11

Quick links

Goals

Benefits

License

Installation

To load the project in a Pharo image follow these instructions.


Now you can try the Hello World:

CascadingStyleSheetBuilder new
  declareRuleSetFor: [:selector | selector body before]
  with: [:style | style content: '"Hello World"'];
  build

you should see something like this:

body::before
{
  content: "Hello World";
}

Contributing

Check the Contribution Guidelines