Files
less.js/test/less/functions.less
cloudhead 904d997730 the e() LESS function
used to escape strings in values.
Added Anonymous node to handle things like this.
2010-04-22 19:42:02 -04:00

11 lines
190 B
Plaintext

#functions {
color: color("evil red"); // #660000
width: increment(15);
height: undefined("self");
border-width: add(2, 3);
}
#built-in {
escaped: e("-Some::weird(#thing, y)");
}