| commit | 7f5f84ea22a26bd635379b65adba00128b25b73b | [log] [tgz] |
|---|---|---|
| author | Moritz <mosum@google.com> | Thu Oct 31 14:16:39 2024 +0100 |
| committer | GitHub <noreply@github.com> | Thu Oct 31 14:16:39 2024 +0100 |
| tree | f20d267dcaf67341114ead5a73c58232530d3dad | |
| parent | a3700b05bbcc42782e8a7024790dbf019d89c249 [diff] |
Update README.md before archiving (#208)
[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/tools/tree/main/pkgs/csslib
A Dart CSS parser.
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.