azul-simplecss

Fork of https://github.com/RazrFalcon/simplecss (because lack of maintainer). Added @rules + better parsing on top of original parser.


A very simple streaming parser/tokenizer for CSS 2.1 data format without heap allocations.

Since it's very simple we will start with limitations:

Limitations

Where to use

simplecss can be useful for parsing a very simple or predefined CSS.

It's tiny, dependency free and pretty fast.

Examples

Simple

text * { color : red } | | | || | | | |+- Token::EndOfStream | | | +- Token::BlockEnd | | +- Token::Declaration("color", "red") | +- Token::BlockStart +- Token::UniversalSelector

Complex

text div#x:first-letter em[id] + .hh1 { color : red } | | | || | | | | | || | | | || | | | | | |+- Token::EndOfStream | | | || | | | | | +- Token::BlockEnd | | | || | | | | +- Token::Declaration("color", "red") | | | || | | | +- Token::BlockStart | | | || | | +- Token::ClassSelector("hh1") | | | || | +- Token::Combinator(Combinator::Plus) | | | || +- Token::AttributeSelector("id") | | | |+- Token::TypeSelector("em") | | | +- Token::Combinator(Combinator::Space) | | +- Token::PseudoClass("first-letter") | +- Token::IdSelector("x") +- Token::TypeSelector("div")