From d6f02e067c271638857bb9bac51770da7fa95527 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 30 Dec 2013 01:00:40 +0000 Subject: [PATCH] web: Remove "/" character in
elements. 'br' is an empty element, i.e., it can take no content and it may not have an end tag. Indeed, the W3C Markup Validation Service complains about this: Line 33, Column 42: NET-enabling start-tag requires SHORTTAG YES This bug was introduced in commit 607d79aa (web: Unify
elements. 2013-08). --- web/header.html | 22 +++++++++++----------- web/header2.html | 22 +++++++++++----------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/web/header.html b/web/header.html index 475079ba..8f7428f7 100644 --- a/web/header.html +++ b/web/header.html @@ -21,16 +21,16 @@ -
- Home
- Features
- Screenshots
- Download
- Documentation
- Changes
- Development
- License
- Contact
- Credits
+
+ Home
+ Features
+ Screenshots
+ Download
+ Documentation
+ Changes
+ Development
+ License
+ Contact
+ Credits
diff --git a/web/header2.html b/web/header2.html index cf919d0d..68980a86 100644 --- a/web/header2.html +++ b/web/header2.html @@ -21,17 +21,17 @@ -
- Home
- Features
- Screenshots
- Download
- Documentation
- Changes
- Development
- License
- Contact
- Credits
+
+ Home
+ Features
+ Screenshots
+ Download
+ Documentation
+ Changes
+ Development
+ License
+ Contact
+ Credits

API Reference

-- 2.39.2