Skip to content

Commit 288610a

Browse files
authored
Merge pull request #3142 from Mutefish0/master
fix: url() contains exclamation marks cause parsing error (#2880)
2 parents d4d74ef + 1481e41 commit 288610a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lexer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace Sass {
3939
{
4040
unsigned int cmp = unsigned(chr);
4141
return (cmp > 41 && cmp < 127) ||
42-
cmp == ':' || cmp == '/';
42+
cmp == ':' || cmp == '/' || cmp == '|';
4343
}
4444

4545
// check if char is within a reduced ascii range

0 commit comments

Comments
 (0)