Add whitespace in tag match regex
This commit is contained in:
parent
35b4498026
commit
a40444fa2f
@ -139,7 +139,7 @@ inline const RegEx& URI() {
|
|||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
inline const RegEx& Tag() {
|
inline const RegEx& Tag() {
|
||||||
static const RegEx e = Word() | RegEx("#;/?:@&=+$_.~*'()", REGEX_OR) |
|
static const RegEx e = Word() | RegEx(" #;/?:@&=+$_.~*'()", REGEX_OR) |
|
||||||
(RegEx('%') + Hex() + Hex());
|
(RegEx('%') + Hex() + Hex());
|
||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user