Skip to content

Commit

Permalink
Merge pull request #3142 from Mutefish0/master
Browse files Browse the repository at this point in the history
fix: url() contains exclamation marks cause parsing error (#2880)
  • Loading branch information
mgreter authored Mar 4, 2021
2 parents d4d74ef + 1481e41 commit 288610a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace Sass {
{
unsigned int cmp = unsigned(chr);
return (cmp > 41 && cmp < 127) ||
cmp == ':' || cmp == '/';
cmp == ':' || cmp == '/' || cmp == '|';
}

// check if char is within a reduced ascii range
Expand Down

0 comments on commit 288610a

Please sign in to comment.