diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2012-03-30 13:57:38 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2012-03-30 13:57:38 (GMT) |
commit | 66d267b70b525efe3e771f538b87508cdc765537 (patch) | |
tree | 2ac6fc959473e18bf893451e2e57f0c08cd31b2d | |
parent | 31ef58e957d325479b4886bb9dd3175860cc2b12 (diff) | |
download | mxe-66d267b70b525efe3e771f538b87508cdc765537.zip mxe-66d267b70b525efe3e771f538b87508cdc765537.tar.gz mxe-66d267b70b525efe3e771f538b87508cdc765537.tar.bz2 |
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 "+".
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |