Clone this repo:
  1. 171ed48 Bump actions/checkout from 4.1.1 to 4.1.2 (#198) by dependabot[bot] · 4 weeks ago main
  2. 4216525 prep for publishing 1.0.1 (#197) by Devon Carew · 5 weeks ago
  3. b58e487 Update processFont to handle null expressions. (#186) by Olzhas Suleimen · 6 weeks ago
  4. 62ae85e Bump dart-lang/setup-dart from 1.6.0 to 1.6.2 (#196) by dependabot[bot] · 3 months ago
  5. ec86ee5 Require Dart 3.0, update and fix lints (#194) by Kevin Moore · 4 months ago

Dart CI pub package package publisher

A Dart CSS parser.

Usage

Parsing CSS is easy!

import 'package:csslib/parser.dart';

void main() {
  var stylesheet = parse(
      '.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }');
  print(stylesheet.toDebugString());
}

You can pass a String or List<int> to parse.