I’ve just run a diff across the output for a zola build
version 10.1 and version 11.0.
The generated output for taxonomy pages has changed to be invalid html output.
Version 10.1
<!DOCTYPE html>
<html>
<head>
<title>Redirect</title>
<link rel="canonical" href="https://adeptenglish.com/authors/andrew/" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="refresh" content="0;url=https://adeptenglish.com/authors/andrew/" />
</head>
<body>
<p><a href="https://adeptenglish.com/authors/andrew/">Click here</a> to be redirected.</p>
</body>
</html>
Generating the same site with Version 11
<!doctype html>
<meta charset="utf-8">
<link rel="canonical" href="https://adeptenglish.com/authors/andrew/">
<meta http-equiv="refresh" content="0;url=https://adeptenglish.com/authors/andrew/">
<title>Redirect</title>
<p><a href="https://adeptenglish.com/authors/andrew/">Click here</a> to be redirected.</p>
Note the html
body
and head
tags are missing.