tag | 424845c527cbcc7ed469e5f275f18f799968f2f9 | |
---|---|---|
tagger | Kevin Moore <kevmoo@google.com> | Wed Feb 10 16:56:07 2021 -0800 |
object | 1432076585637e0ebb9f9c348ba50f299907ec5d |
commit | 1432076585637e0ebb9f9c348ba50f299907ec5d | [log] [tgz] |
---|---|---|
author | Kevin Moore <kevmoo@users.noreply.github.com> | Wed Feb 10 16:54:52 2021 -0800 |
committer | GitHub <noreply@github.com> | Wed Feb 10 16:54:52 2021 -0800 |
tree | c6b5caaf8307347c920fbd8c0bc51cbc8b3870d5 | |
parent | 11d4cf4c292c82245ec40a45671fc4e8334336c7 [diff] |
prepare for stable, null-safe version (#127)
A Dart CSS parser.
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
.