commit | 72ca9c27b54f3bd4621d6e98c2b6e23ba610e6d1 | [log] [tgz] |
---|---|---|
author | Leon Senft <leonsenft@google.com> | Wed Jan 25 17:22:03 2017 -0800 |
committer | Leon Senft <leonsenft@google.com> | Wed Jan 25 17:22:03 2017 -0800 |
tree | 7e80d5ea80f50d5a71f86d669d918d0e00943f95 | |
parent | a5074aabf36193c83edadfa9f30cde29ce371e9b [diff] |
Fixes analyzer error
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' show parse; import 'package:csslib/css.dart'; main() { var stylesheet = parse( '.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }'); print(stylesheet.toString()); }
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