based on the one from the markdown parser, fixes #3553 adding a list of urls for testing the regex in the specs
43 lines
No EOL
654 B
Text
43 lines
No EOL
654 B
Text
#
|
|
# http://mathiasbynens.be/demo/url-regex
|
|
# lines starting with '#' are ignored
|
|
#
|
|
http://
|
|
http://.
|
|
http://..
|
|
http://../
|
|
http://?
|
|
http://??
|
|
http://??/
|
|
http://#
|
|
http://##
|
|
http://##/
|
|
http://foo.bar?q=Spaces should be encoded
|
|
//
|
|
//a
|
|
///a
|
|
///
|
|
http:///a
|
|
foo.com
|
|
rdar://1234
|
|
h://test
|
|
http:// shouldfail.com
|
|
:// should fail
|
|
http://foo.bar/foo(bar)baz quux
|
|
ftps://foo.bar/
|
|
http://-error-.invalid/
|
|
http://a.b--c.de/
|
|
http://-a.b.co
|
|
http://a.b-.co
|
|
http://0.0.0.0
|
|
http://10.1.1.0
|
|
http://10.1.1.255
|
|
http://224.1.1.1
|
|
http://1.1.1.1.1
|
|
http://123.123.123
|
|
http://3628126748
|
|
http://.www.foo.bar/
|
|
http://www.foo.bar./
|
|
http://.www.foo.bar./
|
|
http://10.1.1.1
|
|
http://10.1.1.254 |