Clone this repo:
  1. 3cfa58c Bump actions/checkout from 4.2.0 to 4.2.2 in the github-actions group (#209) by dependabot[bot] · 3 weeks ago main
  2. 7f5f84e Update README.md before archiving (#208) by Moritz · 3 weeks ago
  3. a3700b0 Bump actions/checkout from 4.1.7 to 4.2.0 in the github-actions group (#207) by dependabot[bot] · 7 weeks ago
  4. d486627 Fix angle brackets in doc comments (#206) by Kevin Moore · 3 months ago
  5. 192d720 Bump the github-actions group with 2 updates (#205) by dependabot[bot] · 5 months ago

[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/tools/tree/main/pkgs/csslib

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.