mirror of
https://github.com/pirate/ArchiveBox.git
synced 2025-08-29 09:10:13 +02:00
fix url parsing through quotes
This commit is contained in:
@@ -59,7 +59,7 @@ URL_REGEX = re.compile(
|
|||||||
r'(?:[a-zA-Z]|[0-9]' # followed by allowed alphanum characters
|
r'(?:[a-zA-Z]|[0-9]' # followed by allowed alphanum characters
|
||||||
r'|[$-_@.&+]|[!*\(\),]' # or allowed symbols
|
r'|[$-_@.&+]|[!*\(\),]' # or allowed symbols
|
||||||
r'|(?:%[0-9a-fA-F][0-9a-fA-F]))' # or allowed unicode bytes
|
r'|(?:%[0-9a-fA-F][0-9a-fA-F]))' # or allowed unicode bytes
|
||||||
r'[^\]\[\(\)<>\""\'\s]+', # stop parsing at these symbols
|
r'[^\]\[\(\)<>"\'\s]+', # stop parsing at these symbols
|
||||||
re.IGNORECASE,
|
re.IGNORECASE,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user