summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAman Verma <amanraoverma@gmail.com>2022-11-12 14:47:21 -0600
committerAman Verma <amanraoverma@gmail.com>2022-11-12 14:47:21 -0600
commitedda3d1b51711915b87f1a1b14ca590dc85248e5 (patch)
treec04eb111b7418ce5cd706500bb261af1976cbd43
parent27a11e7b357d73c663fec268367325bf733306d9 (diff)
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
-rw-r--r--src/theme/redirect.hbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theme/redirect.hbs b/src/theme/redirect.hbs
index 9f49e6d0..574d41b3 100644
--- a/src/theme/redirect.hbs
+++ b/src/theme/redirect.hbs
@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>Redirecting...</title>
- <meta http-equiv="refresh" content="0;URL='{{url}}'">
+ <meta http-equiv="refresh" content="0; URL={{url}}">
<meta rel="canonical" href="{{url}}">
</head>
<body>