Skip to content

Commit edda3d1

Browse files
committed
Fix formatting of content attr in <meta http-equiv=refresh>
According to the HTML specification[1], there needs to be a space after the semicolon and the URL must be unquoted. [1]: https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-refresh
1 parent 27a11e7 commit edda3d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/theme/redirect.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<title>Redirecting...</title>
6-
<meta http-equiv="refresh" content="0;URL='{{url}}'">
6+
<meta http-equiv="refresh" content="0; URL={{url}}">
77
<meta rel="canonical" href="{{url}}">
88
</head>
99
<body>

0 commit comments

Comments
 (0)