| OLD | NEW |
| 1 csslib in Pure Dart | 1 csslib in Pure Dart |
| 2 =================== | 2 =================== |
| 3 | 3 |
| 4 This is a pure [Dart][dart] [CSS parser][cssparse]. Since it's 100% | 4 This is a pure [Dart][dart] [CSS parser][cssparse]. Since it's 100% |
| 5 Dart you can use it safely from a script or server side app. | 5 Dart you can use it safely from a script or server side app. |
| 6 | 6 |
| 7 [](https
://drone.io/github.com/dart-lang/csslib/latest) | |
| 8 | |
| 9 Installation | 7 Installation |
| 10 ------------ | 8 ------------ |
| 11 | 9 |
| 12 Add this to your `pubspec.yaml` (or create it): | 10 Add this to your `pubspec.yaml` (or create it): |
| 13 ```yaml | 11 ```yaml |
| 14 dependencies: | 12 dependencies: |
| 15 csslib: any | 13 csslib: any |
| 16 ``` | 14 ``` |
| 17 Then run the [Pub Package Manager][pub] (comes with the Dart SDK): | 15 Then run the [Pub Package Manager][pub] (comes with the Dart SDK): |
| 18 | 16 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ``` | 73 ``` |
| 76 | 74 |
| 77 Run only the suite tests: | 75 Run only the suite tests: |
| 78 | 76 |
| 79 ```bash | 77 ```bash |
| 80 test/run.sh suite | 78 test/run.sh suite |
| 81 ``` | 79 ``` |
| 82 | 80 |
| 83 [dart]: http://www.dartlang.org/ | 81 [dart]: http://www.dartlang.org/ |
| 84 [pub]: http://www.dartlang.org/docs/pub-package-manager/ | 82 [pub]: http://www.dartlang.org/docs/pub-package-manager/ |
| OLD | NEW |