Clone this repo:
  1. 192d720 Bump the github-actions group with 2 updates (#205) by dependabot[bot] · 4 weeks ago main
  2. b70fef2 Update and fix lints, bump min SDK to Dart 3.1 (#204) by Kevin Moore · 5 weeks ago
  3. 23c314b Bump actions/checkout from 4.1.4 to 4.1.6 in the github-actions group (#202) by dependabot[bot] · 8 weeks ago
  4. 141dd65 blast_repo fixes (#201) by Devon Carew · 3 months ago
  5. 4ab68e4 Bump dart-lang/setup-dart from 1.6.2 to 1.6.4 (#200) by dependabot[bot] · 3 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.