mirror of
https://github.com/less/less.js.git
synced 2026-01-23 14:18:00 -05:00
- Fix for "{" not parsing
- Use some backtracking when necessary,
it's prettier than crazy lookaheads.
16 lines
280 B
CSS
16 lines
280 B
CSS
#strings {
|
|
background-image: url("http://son-of-a-banana.com");
|
|
quotes: "~" "~";
|
|
content: "#*%:&^,)!.(~*})";
|
|
empty: "";
|
|
brackets: "{" "}";
|
|
}
|
|
#comments {
|
|
content: "/* hello */ // not-so-secret";
|
|
}
|
|
#single-quote {
|
|
quotes: "'" "'";
|
|
content: '""#!&""';
|
|
empty: '';
|
|
}
|