Skip to content

Commit b943915

Browse files
committed
Merge pull request #1147 from mgreter/feature/issue_1146
Allow more valid ascii chars for url parsing
2 parents d68baf0 + e88c4ce commit b943915

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)