Skip to content

Commit e88c4ce

Browse files
committed
Allow more valid ascii chars for url parsing
Fixes #1146
1 parent 20d8870 commit e88c4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

constants.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ namespace Sass {
138138
extern const char arglist_name[] = "arglist";
139139

140140
// constants for uri parsing (RFC 3986 Appendix A.)
141-
extern const char uri_chars[] = ":;/?!$%&#@[]{}'\"*+-.,_=";
141+
extern const char uri_chars[] = ":;/?!$%&#@|[]{}'`^\"*+-.,_=~";
142142

143143
// some specific constant character classes
144144
// they must be static to be useable by lexer

0 commit comments

Comments
 (0)