We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4fb559 commit f8d9f27Copy full SHA for f8d9f27
prelexer.cpp
@@ -426,11 +426,16 @@ namespace Sass {
426
const char* uri_value(const char* src)
427
{
428
return
429
- zero_plus <
430
- alternatives <
431
- alnum,
432
- exactly <'/'>,
433
- class_char < uri_chars >
+ sequence <
+ negate <
+ exactly < '$' >
+ >,
+ zero_plus <
434
+ alternatives <
435
+ alnum,
436
+ exactly <'/'>,
437
+ class_char < uri_chars >
438
+ >
439
>
440
>(src);
441
}
0 commit comments