escape.less 507 B

1234567891011121314151617181920
  1. body {
  2. @hello: "world";
  3. border: e("this is simple");
  4. border: e(this is simple); // bug in lessjs
  5. border: e("this is simple", "cool lad");
  6. border: e(1232);
  7. border: e(@hello);
  8. border: e("one" + 'more'); // no string addition lessjs
  9. border: e(); // syntax error lessjs
  10. line-height: ~"eating rice";
  11. line-height: ~"string cheese";
  12. line-height: a b c ~"string me" d e f;
  13. line-height: ~"string @{hello}";
  14. }
  15. .class {
  16. filter: ~"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png')";
  17. }