ac7916aa87
- Fix for "{" not parsing - Use some backtracking when necessary, it's prettier than crazy lookaheads.
16 lines
280 B
Plaintext
16 lines
280 B
Plaintext
#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: '';
|
|
}
|