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 "+".
pull/13/head
Volker Grabsch 12 years ago
parent 31ef58e957
commit 66d267b70b

@ -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>

Loading…
Cancel
Save