It appears that bin/preprocess-html.py introduces HTML errors when an <h1>...<h4> element contains a nested hyperlink. My recent gcc-15 release note changes passed validation when checked via file upload, but not after commit via file link. It seems the easiest fix is just to remove the offending <a> element. --- htdocs/gcc-15/changes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/htdocs/gcc-15/changes.html b/htdocs/gcc-15/changes.html index 9359e562..7638d3d5 100644 --- a/htdocs/gcc-15/changes.html +++ b/htdocs/gcc-15/changes.html @@ -65,7 +65,7 @@ a work-in-progress.</p> <!-- .................................................................. --> <h2 id="languages">New Languages and Language specific improvements</h2> -<h3 id="openmp"><a href="../projects/gomp/">OpenMP</a></h3> +<h3 id="openmp">OpenMP</h3> <ul> <li> Support for unified-shared memory has been added for some AMD and Nvidia -- 2.34.1