Skip to content

Commit 599e30e

Browse files
authoredOct 5, 2021
URI: Fixed IPv4 regex (#3128)
1 parent 23d9aec commit 599e30e

File tree

4 files changed

+29
-6
lines changed

4 files changed

+29
-6
lines changed
 

‎components/prism-uri.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Prism.languages.uri = {
8080
'ipv6-address': /^[\s\S]+/
8181
}
8282
},
83-
'ipv4-address': /^(?:(?:[03-9]\d?|[12]\d{0,2})\.){3}(?:[03-9]\d?|[12]{0,2})$/
83+
'ipv4-address': /^(?:(?:[03-9]\d?|[12]\d{0,2})\.){3}(?:[03-9]\d?|[12]\d{0,2})$/
8484
}
8585
}
8686
}

‎components/prism-uri.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tests/languages/uri/authority_feature.test

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
https://john.doe@www.example.com:123/forum/questions
22
ftp://ftp.is.co.za/rfc/rfc1808.txt
33
ldap://[2001:db8::7]/
4+
https://[v1.foo]/
45
//192.0.2.16:80/
56
//example.com/path/resource.txt
67

@@ -63,9 +64,29 @@ ldap://[2001:db8::7]/
6364
["path-separator", "/"]
6465
]],
6566

67+
["scheme", [
68+
"https",
69+
["scheme-delimiter", ":"]
70+
]],
6671
["authority", [
6772
["authority-delimiter", "//"],
68-
["host", ["192.0.2.16"]],
73+
["host", [
74+
["ip-literal", [
75+
["ip-literal-delimiter", "["],
76+
["ipv-future", "v1.foo"],
77+
["ip-literal-delimiter", "]"]
78+
]]
79+
]]
80+
]],
81+
["path", [
82+
["path-separator", "/"]
83+
]],
84+
85+
["authority", [
86+
["authority-delimiter", "//"],
87+
["host", [
88+
["ipv4-address", "192.0.2.16"]
89+
]],
6990
["port-segment", [
7091
["port-delimiter", ":"],
7192
["port", "80"]
@@ -85,4 +106,4 @@ ldap://[2001:db8::7]/
85106
["path-separator", "/"],
86107
"resource.txt"
87108
]]
88-
]
109+
]

‎tests/languages/uri/full.test

+4-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ https://example.com/path/resource.txt#fragment
9393
]],
9494
["authority", [
9595
["authority-delimiter", "//"],
96-
["host", ["192.0.2.16"]],
96+
["host", [
97+
["ipv4-address", "192.0.2.16"]
98+
]],
9799
["port-segment", [
98100
["port-delimiter", ":"],
99101
["port", "80"]
@@ -121,4 +123,4 @@ https://example.com/path/resource.txt#fragment
121123
["fragment-delimiter", "#"],
122124
"fragment"
123125
]]
124-
]
126+
]

0 commit comments

Comments
 (0)
Please sign in to comment.