Restore HTML compliance of index.html by declaring it as HTML5

Previously, index.html was declared as HTML 4.01 Strict.
However, HTML 4.01 doesn't allow for "+" characters in
IDs such as id="libodbc++-package". We could disallow
the "+" for all package names, but it seems to be easier
to just declare index.html as HTML5, as it apparently
allows for a wider range of characters in IDs, including "+".
This commit is contained in:
Volker Grabsch 2012-03-30 15:57:38 +02:00
parent 31ef58e957
commit 66d267b70b
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!DOCTYPE html>
<html>
<head>