commit | 8a88a4a8d65f7d0e118d0d93ca8d77589bfbb8be | [log] [tgz] |
---|---|---|
author | Leon Senft <leonsenft@google.com> | Mon Jul 08 13:20:36 2019 -0700 |
committer | Leon Senft <leonsenft@google.com> | Mon Jul 08 13:20:36 2019 -0700 |
tree | 6a298c5109dd588c4217249ba9abc7ba56630a31 | |
parent | 2dc5fcea0829c2f2a359ef12a82a7f2f8520de3d [diff] |
Update version for release
This is a CSS parser written entirely in Dart. It can be used in the client/server/command line.
This package is installed with Pub, see: install instructions for this package.
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 of bytes to parse
.
Basic tests can be found in this repository:
pub run test
The full CSS test suite can be found in https://github.com/dart-lang/csslib-test-suite
cd ../csslib-test-suite ./run.sh