Clone this repo:
  1. 62ae85e Bump dart-lang/setup-dart from 1.6.0 to 1.6.2 (#196) by dependabot[bot] · 7 weeks ago main
  2. ec86ee5 Require Dart 3.0, update and fix lints (#194) by Kevin Moore · 10 weeks ago
  3. 1ad2d1e Bump actions/stale from 8.0.0 to 9.0.0 (#195) by dependabot[bot] · 3 months ago
  4. 1325d75 blast_repo fixes (#193) by Kevin Moore · 3 months ago
  5. 17346e5 Bump dart-lang/setup-dart from 1.5.1 to 1.6.0 (#191) by dependabot[bot] · 5 months ago

Dart CI pub package package publisher

A Dart CSS parser.

Usage

Parsing CSS is easy!

import 'package:csslib/parser.dart';

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.