diff options
author | Kevin <ar18@comcast.net> | 2007-10-06 01:28:23 +0000 |
---|---|---|
committer | Kevin <ar18@comcast.net> | 2007-10-06 01:28:23 +0000 |
commit | 4fbcd6c01bb42cad20e539bccae8054aa0ccfcb3 (patch) | |
tree | fa217ced82377d1941a03bdf2520828b825cae49 /clang/www/features.html | |
parent | f864ac96d82e9493e5e676be263c137e0a142920 (diff) | |
download | bcm5719-llvm-4fbcd6c01bb42cad20e539bccae8054aa0ccfcb3.tar.gz bcm5719-llvm-4fbcd6c01bb42cad20e539bccae8054aa0ccfcb3.zip |
1. May fix encoding issues: server uses UTF; HTML file assumes Western (ISO 8859-1).
2. Added strict doctype.
Closing out tags like <br/> and <meta.../> may still be a problem (necessary for XHTML, but wrong for HTML)....
llvm-svn: 42673
Diffstat (limited to 'clang/www/features.html')
-rw-r--r-- | clang/www/features.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/www/features.html b/clang/www/features.html index bc3200f7de8..e636dd84221 100644 --- a/clang/www/features.html +++ b/clang/www/features.html @@ -1,10 +1,9 @@ <!-- Consulted: http://www.w3.org/TR/CSS1 & http://www.w3.org/TR/CSS21/ -->
-<!--
-Consulted:
-HTML 4.01 specs: http://www.w3.org/TR/html401/
--->
+<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
+ <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Clang - Features</title>
<link type="text/css" rel="stylesheet" href="menu.css" />
<link type="text/css" rel="stylesheet" href="content.css" />
|