html4-differences/Overview.html 1.58 quoted attribute day; use consiste

quoted attribute day; use consistent markup

1.4 Impact on Web Architecture
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#webarch
2 Syntax
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#syntax
3.1 New Elements
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#new-elements
2.2 The DOCTYPE
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#doctype
1.3 Development Model
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#development-model
2.1 Character Encoding
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#character-encoding

http://people.w3.org/mike/diffs/html5/html4-differences/Overview.diff.html
http://dev.w3.org/cvsweb/html5/html4-differences/Overview.html?r1=1.57&r2=1.58&f=h

===================================================================
RCS file: /sources/public/html5/html4-differences/Overview.html,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- Overview.html 26 Jan 2009 14:05:55 -0000 1.57
+++ Overview.html 26 Jan 2009 14:29:51 -0000 1.58
@@ -354,7 +354,7 @@
    the <code>text/html</code> media type. Here is an example document that
    conforms to the HTML syntax:
 
-  <pre>&lt;!doctype html>
+  <pre><code>&lt;!doctype html>
 &lt;html>
   &lt;head>
     &lt;meta charset="UTF-8">
@@ -363,7 +363,7 @@
   &lt;body>
     &lt;p>Example paragraph&lt;/p>
   &lt;/body>
-&lt;/html></pre>
+&lt;/html></code></pre>
 
   <p>The other syntax that can be used for HTML&nbsp;5 is XML. This syntax is
    compatible with XHTML1 documents and implementations. Documents using this
@@ -376,7 +376,7 @@
    HTML&nbsp;5. Note that XML documents must have an XML MIME type such as
    <code>application/xhtml+xml</code> or <code>application/xml</code>.
 
-  <pre>&lt;?xml version="1.0" encoding="UTF-8"?>
+  <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?>
 &lt;html xmlns="http://www.w3.org/1999/xhtml">
   &lt;head>
     &lt;title>Example document&lt;/title>
@@ -384,7 +384,7 @@
   &lt;body>
     &lt;p>Example paragraph&lt;/p>
   &lt;/body>
-&lt;/html></pre>
+&lt;/html></code></pre>
 
   <h3 id=character-encoding><span class=secno>2.1 </span>Character Encoding</h3>
 
@@ -498,7 +498,7 @@
      some embedded content, such as a graphic or video:</p>
 
     <pre><code>&lt;figure>
- &lt;video src=ogg>&hellip;&lt;/video>
+ &lt;video src="ogg">&lt;/video>
  &lt;legend>Example&lt;/legend>
 &lt;/figure></code></pre>
   </ul>
@@ -549,8 +549,8 @@
     <p><code>datalist</code> together with the a new <code>list</code>
      attribute for <code>input</code> is used to make comboboxes:</p>
 
-    <pre><code>&lt;input list=browsers>
-&lt;datalist id=browsers>
+    <pre><code>&lt;input list="browsers">
+&lt;datalist id="browsers">
  &lt;option value="Safari">
  &lt;option value="Internet Explorer">
  &lt;option value="Opera">

Index: Overview.src.html
===================================================================
RCS file: /sources/public/html5/html4-differences/Overview.src.html,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- Overview.src.html 26 Jan 2009 14:05:55 -0000 1.36
+++ Overview.src.html 26 Jan 2009 14:29:51 -0000 1.37
@@ -277,7 +277,7 @@
     have the <code>text/html</code> media type. Here is an example document
     that conforms to the HTML syntax:</p>
 
-    <pre>&lt;!doctype html>
+    <pre><code>&lt;!doctype html>
 &lt;html>
   &lt;head>
     &lt;meta charset="UTF-8">
@@ -286,7 +286,7 @@
   &lt;body>
     &lt;p>Example paragraph&lt;/p>
   &lt;/body>
-&lt;/html></pre>
+&lt;/html></code></pre>
 
     <p>The other syntax that can be used for HTML&nbsp;5 is XML. This syntax
     is compatible with XHTML1 documents and implementations. Documents using
@@ -299,7 +299,7 @@
     HTML&nbsp;5. Note that XML documents must have an XML MIME type such as
     <code>application/xhtml+xml</code> or <code>application/xml</code>.</p>
     
-    <pre>&lt;?xml version="1.0" encoding="UTF-8"?>
+    <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?>
 &lt;html xmlns="http://www.w3.org/1999/xhtml">
   &lt;head>
     &lt;title>Example document&lt;/title>
@@ -307,7 +307,7 @@
   &lt;body>
     &lt;p>Example paragraph&lt;/p>
   &lt;/body>
-&lt;/html></pre>
+&lt;/html></code></pre>
     
     <h3 id="character-encoding">Character Encoding</h3>
     
@@ -425,7 +425,7 @@
         with some embedded content, such as a graphic or video:</p>
 
         <pre><code>&lt;figure>
- &lt;video src=ogg>&hellip;&lt;/video>
+ &lt;video src="ogg">&lt;/video>
  &lt;legend>Example&lt;/legend>
 &lt;/figure></code></pre>
       </li>
@@ -469,8 +469,8 @@
         <p><code>datalist</code> together with the a new <code>list</code>
         attribute for <code>input</code> is used to make comboboxes:</p>
 
-        <pre><code>&lt;input list=browsers>
-&lt;datalist id=browsers>
+        <pre><code>&lt;input list="browsers">
+&lt;datalist id="browsers">
  &lt;option value="Safari">
  &lt;option value="Internet Explorer">
  &lt;option value="Opera">

Received on Monday, 26 January 2009 14:31:01 UTC