OLD | NEW |
(Empty) | |
| 1 :coffee |
| 2 'This is coffee script' |
| 3 |
| 4 ~ |
| 5 :coffee |
| 6 'This is coffee script' |
| 7 |
| 8 ---------------------------------------------------- |
| 9 |
| 10 [ |
| 11 ["filter-coffee", [ |
| 12 ["filter-name", ":coffee"], |
| 13 ["string", "'This is coffee script'"] |
| 14 ]], |
| 15 ["punctuation", "~"], |
| 16 ["filter-coffee", [ |
| 17 ["filter-name", ":coffee"], |
| 18 ["string", "'This is coffee script'"] |
| 19 ]] |
| 20 ] |
| 21 |
| 22 ---------------------------------------------------- |
| 23 |
| 24 Checks for CoffeeScript filter in Haml. The tilde serves only as a separator. |
OLD | NEW |