OLD | NEW |
(Empty) | |
| 1 :less |
| 2 .foo { .bar; } |
| 3 |
| 4 ~ |
| 5 :less |
| 6 .foo { .bar; } |
| 7 |
| 8 ---------------------------------------------------- |
| 9 |
| 10 [ |
| 11 ["filter-less", [ |
| 12 ["filter-name", ":less"], |
| 13 ["selector", [".foo"]], |
| 14 ["punctuation", "{"], |
| 15 ["mixin-usage", ".bar"], |
| 16 ["punctuation", ";"], |
| 17 ["punctuation", "}"] |
| 18 ]], |
| 19 ["punctuation", "~"], |
| 20 ["filter-less", [ |
| 21 ["filter-name", ":less"], |
| 22 ["selector", [".foo"]], |
| 23 ["punctuation", "{"], |
| 24 ["mixin-usage", ".bar"], |
| 25 ["punctuation", ";"], |
| 26 ["punctuation", "}"] |
| 27 ]] |
| 28 ] |
| 29 |
| 30 ---------------------------------------------------- |
| 31 |
| 32 Checks for Less filter in Haml. The tilde serves only as a separator. |
OLD | NEW |